/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #141415 25%, #1a1a2e 50%, #16213e 75%, #0f0f1e 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 98%, rgba(0, 212, 255, 0.02) 2%),
        linear-gradient(-45deg, transparent 98%, rgba(0, 212, 255, 0.02) 2%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, -50px 50px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #141415;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.logo h1 span {
    color: #00d4ff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.nav-menu a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.language-switcher{
    display:flex;
    background: rgba(0,0,0,0.3);
    border:1px solid #ff6b35;
    border-radius:25px;
    padding:4px;
    gap:4px;
    margin-left: 15px;
}

.lang-btn{
    background:transparent;
    border:none;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

.lang-btn:hover{
    background:rgba(255,107,53,0.3);
}

.lang-btn.active{
    background:#ff6b35;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.lang-btn:hover::before {
    left: 100%;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.play-btn {
    background: #00d4ff;
    color: #141415;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

.play-btn:hover {
    background: #00b8e6;
    transform: translateY(-1px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    margin: 5% auto;
    padding: 0;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 107, 53, 0.2);
    animation: modalSlideIn 0.4s ease-out;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: modalBorder 3s linear infinite;
}

@keyframes modalBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff6b35;
}

.modal-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin: 40px 40px 20px;
    color: #ffffff;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: modalTitleGlow 2s ease-in-out infinite;
}

@keyframes modalTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(247, 147, 30, 1)); }
}

.copied-notice {
    display: none;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.copied-notice.show {
    display: block;
}

.modal-code {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.modal-code:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.02);
}

.modal-content p {
    color: #b8b8b8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.instruction-image {
    text-align: center;
    margin: 20px 0;
}

.instruction-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.modal-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.modal-btn i {
    margin-right: 8px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-code {
        margin: 0 20px 20px;
        padding: 15px;
        font-size: 1.5rem;
    }
    
    .modal-content p {
        margin: 12px 20px;
        font-size: 0.9rem;
    }
    
    .instruction-image {
        margin: 20px 20px;
    }
    
    .modal-btn {
        margin: 20px auto 30px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

/* АГРЕССИВНЫЙ HERO СТИЛЬ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(20, 20, 21, 0.9) 25%, 
        rgba(26, 26, 46, 0.85) 50%, 
        rgba(22, 33, 62, 0.9) 75%, 
        rgba(15, 15, 30, 0.95) 100%);
    overflow: hidden;
}

.hero-aggressive {
    flex: 1.2;
    z-index: 3;
    position: relative;
    padding: 0 20px;
    max-width: 700px;
}

/* Мега заголовок */
.main-headline {
    margin-bottom: 40px;
    text-align: center;
}

.mega-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #ffa500, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
    animation: titlePulse 3s infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mega-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.mega-subtitle .highlight {
    color: #00ff00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Супер триггеры */
.super-triggers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.trigger-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trigger-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trigger-item:hover::before {
    opacity: 1;
}

.trigger-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.6);
}

.trigger-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.trigger-title {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 5px;
}

.trigger-desc {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Живые выигрыши */
.live-wins {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.wins-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wins-title {
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: 700;
}

.live-indicator {
    color: #00ff00;
    font-size: 0.9rem;
    font-weight: 700;
    animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.wins-ticker {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.win-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.win-item .player {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.win-item .amount {
    color: #00ff00;
    font-weight: 700;
    font-size: 1rem;
}

.win-item .game {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Мега кнопки */
.mega-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.mega-button {
    flex: 1;
    padding: 25px 30px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 100px;
}

.mega-button.primary {
    background: linear-gradient(135deg, #ff6b35, #ff0000);
    color: white;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.mega-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 107, 53, 0.5);
    backdrop-filter: blur(10px);
}

.mega-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.6);
}

.mega-button.primary:hover {
    background: linear-gradient(135deg, #ff8c42, #ff3333);
}

.mega-button.secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.8);
}

.button-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.button-text {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

.button-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mega-button:hover .button-arrow {
    transform: translateY(-50%) translateX(5px);
}

/* Статистика доверия */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.4);
}

.stat-label {
    font-size: 0.8rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    animation: gradientFloat 15s ease-in-out infinite alternate;
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 53, 0.1),
        rgba(247, 147, 30, 0.1),
        rgba(255, 165, 0, 0.1),
        rgba(255, 107, 53, 0.1)
    );
    background-size: 400% 400%;
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(-30px, -20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.4));
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 20s infinite linear;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.particle.gold {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), rgba(255, 193, 37, 0.4));
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.particle.blue {
    background: radial-gradient(circle, rgba(0, 149, 255, 0.8), rgba(0, 123, 255, 0.4));
    box-shadow: 0 0 10px rgba(0, 149, 255, 0.6);
}

.particle.green {
    background: radial-gradient(circle, rgba(0, 255, 132, 0.8), rgba(0, 255, 100, 0.4));
    box-shadow: 0 0 10px rgba(0, 255, 132, 0.6);
}

.particle.purple {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.8), rgba(196, 181, 253, 0.4));
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
}

.particle.rainbow {
    background: radial-gradient(circle, 
        rgba(255, 0, 132, 0.8), 
        rgba(255, 149, 0, 0.4), 
        rgba(0, 255, 132, 0.4), 
        rgba(132, 0, 255, 0.4));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: rainbowShift 3s linear infinite;
}

@keyframes rainbowShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: particleGlow 2s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

@keyframes particleGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.9) 0%, 
        rgba(22, 33, 62, 0.8) 50%, 
        rgba(15, 15, 30, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    z-index: 1;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    text-shadow: 0 3px 6px rgba(255, 107, 53, 0.4);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.4);
}

.trust-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.trust-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.trust-content h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.win-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.win-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    font-size: 0.85rem;
}

.win-item .player {
    color: #b0b0b0;
}

.win-item .amount {
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.9rem;
}

.win-item .game {
    color: #ffffff;
}

.win-item .time {
    color: #888888;
    font-size: 0.8rem;
}

.payout-features,
.security-features,
.support-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payout-feature,
.security-feature,
.support-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.payout-feature:hover,
.security-feature:hover,
.support-feature:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.payout-icon,
.security-icon,
.support-icon {
    font-size: 1.2rem;
}

.payout-text,
.security-text,
.support-text {
    color: #ffffff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-title {
        font-size: 2rem;
    }
    
    .trust-stats {
        gap: 20px;
    }
    
    .trust-stat {
        min-width: 120px;
        padding: 15px;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-item {
        padding: 20px;
    }
    
    .trust-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 30px 0;
    }
    
    .trust-title {
        font-size: 1.8rem;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-stat {
        min-width: auto;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
    
    .trust-content h3 {
        font-size: 1.1rem;
    }
}

.hero-content {
    flex: 1;
    z-index: 3;
    position: relative;
    padding: 0 20px;
    max-width: 600px;
}

.hero-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

.pulse {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-3px); }
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1;
    font-weight: 900;
}

.title-gradient {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
}

.wave-text {
    display: inline-block;
    animation: waveText 3s ease-in-out infinite;
}

.wave-text span {
    display: inline-block;
    animation: waveLetter 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.1s; }
.wave-text span:nth-child(3) { animation-delay: 0.2s; }
.wave-text span:nth-child(4) { animation-delay: 0.3s; }

@keyframes waveText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes waveLetter {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(5px) rotate(-2deg); }
}

.cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ff8c42, #ffa500);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.8);
}

.cta-button.secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.8);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) rotateX(2deg);
    transition: all 0.1s ease;
}

.button-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-text {
    transform: scale(1.05);
}

.button-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px) rotate(45deg);
}

.title-sub {
    font-size: 2rem;
    color: #b0b0b0;
    font-weight: 300;
    margin-top: 10px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.highlight {
    color: #ff6b35;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 5px;
    text-shadow: 0 3px 6px rgba(255, 107, 53, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-visual {
    flex: 0.8;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* Летящий самолётик Aviator */
.aviator-plane {
    position: absolute;
    font-size: 4rem;
    animation: aviatorFly 12s linear infinite;
    z-index: 10;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
}

@keyframes aviatorFly {
    0% {
        transform: translateX(-300px) translateY(-150px) rotate(-30deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        transform: translateX(100px) translateY(-50px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateX(300px) translateY(50px) rotate(15deg) scale(1.1);
    }
    75% {
        transform: translateX(100px) translateY(100px) rotate(0deg) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-300px) translateY(200px) rotate(-30deg) scale(0.8);
        opacity: 0;
    }
}

/* Падающие деньги */
.money-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.money-item {
    position: absolute;
    font-size: 2rem;
    animation: moneyFall 6s linear infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.money-item:nth-child(1) { left: 15%; animation-delay: 0s; }
.money-item:nth-child(2) { left: 35%; animation-delay: 1.5s; }
.money-item:nth-child(3) { left: 55%; animation-delay: 3s; }
.money-item:nth-child(4) { left: 75%; animation-delay: 4.5s; }
.money-item:nth-child(5) { left: 25%; animation-delay: 2s; }
.money-item:nth-child(6) { left: 45%; animation-delay: 3.5s; }
.money-item:nth-child(7) { left: 65%; animation-delay: 5s; }
.money-item:nth-child(8) { left: 85%; animation-delay: 1s; }

@keyframes moneyFall {
    0% {
        transform: translateY(-150px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(500px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* Анимированный джекпот */
.jackpot-display {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 8;
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 20px;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
    animation: jackpotFloat 4s ease-in-out infinite;
}

@keyframes jackpotFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-20px) scale(1.05);
    }
}

.jackpot-label {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.jackpot-am.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.jackpot-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    border-radius: 20px;
    animation: jackpotPulse 2s ease-in-out infinite;
}

@keyframes jackpotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Мега glow эффекты */
.mega-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.primary-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent 60%);
    top: 20%;
    left: 10%;
    animation: primaryGlow 3s ease-in-out infinite;
}

.secondary-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    top: 60%;
    right: 10%;
    animation: secondaryGlow 4s ease-in-out infinite;
}

@keyframes primaryGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes secondaryGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Адаптивность для агрессивного hero */
@media (max-width: 768px) {
    .hero-aggressive {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .mega-title {
        font-size: 2.5rem;
    }
    
    .super-triggers {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mega-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .mega-button {
        min-height: 80px;
        padding: 20px;
    }
    
    .button-text {
        font-size: 1.1rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-visual {
        min-height: 400px;
    }
    
    .aviator-plane {
        font-size: 3rem;
    }
    
    .money-item {
        font-size: 1.5rem;
    }
    
    .jackpot-display {
        padding: 15px 20px;
    }
    
    .jackpot-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-aggressive {
        padding: 0 10px;
    }
    
    .mega-title {
        font-size: 2rem;
    }
    
    .top-trigger {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .timer {
        text-align: center;
    }
    
    .mega-subtitle {
        font-size: 1.2rem;
    }
    
    .trigger-item {
        padding: 15px;
    }
    
    .mega-button {
        min-height: 70px;
        padding: 15px;
    }
    
    .button-text {
        font-size: 1rem;
    }
    
    .button-sub {
        font-size: 0.8rem;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .aviator-plane {
        font-size: 2.5rem;
    }
    
    .money-item {
        font-size: 1.2rem;
    }
    
    .jackpot-display {
        padding: 10px 15px;
    }
    
    .jackpot-amount {
        font-size: 1.5rem;
    }
    
    .primary-glow {
        width: 300px;
        height: 300px;
    }
    
    .secondary-glow {
        width: 200px;
        height: 200px;
    }
}

/* Летящий самолётик */
.flying-plane {
    position: absolute;
    font-size: 3rem;
    animation: flyPlane 15s linear infinite;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
}

@keyframes flyPlane {
    0% {
        transform: translateX(-200px) translateY(-100px) rotate(-20deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        transform: translateX(200px) translateY(-50px) rotate(0deg);
    }
    50% {
        transform: translateX(400px) translateY(0px) rotate(10deg);
    }
    75% {
        transform: translateX(200px) translateY(50px) rotate(0deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-200px) translateY(100px) rotate(-20deg);
        opacity: 0;
    }
}

/* Падающие монеты */
.coins-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.coin {
    position: absolute;
    font-size: 1.5rem;
    animation: fallCoin 8s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.coin:nth-child(1) { left: 10%; animation-delay: 0s; }
.coin:nth-child(2) { left: 30%; animation-delay: 2s; }
.coin:nth-child(3) { left: 50%; animation-delay: 4s; }
.coin:nth-child(4) { left: 70%; animation-delay: 6s; }
.coin:nth-child(5) { left: 90%; animation-delay: 1s; }
.coin:nth-child(6) { left: 20%; animation-delay: 3s; }
.coin:nth-child(7) { left: 40%; animation-delay: 5s; }
.coin:nth-child(8) { left: 60%; animation-delay: 7s; }

@keyframes fallCoin {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(400px) rotate(360deg);
        opacity: 0;
    }
}

/* Glow эффект вокруг кнопки */
.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: floatElement 15s infinite ease-in-out;
    opacity: 0.6;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 50%; left: 20%; animation-delay: 3s; }
.element-3 { top: 30%; right: 15%; animation-delay: 6s; }
.element-4 { top: 70%; right: 25%; animation-delay: 9s; }
.element-5 { top: 60%; left: 30%; animation-delay: 12s; }
.element-6 { top: 80%; left: 40%; animation-delay: 15s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

.hero-cards {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.preview-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 15px;
    min-width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.card-title {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-bonus {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-cards {
        position: static;
        margin-top: 30px;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .preview-card {
        min-width: 150px;
        padding: 12px;
    }
}
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffffff, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite, gradientShift 8s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(45deg, #8a2be2, #4b0082, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 2s infinite;
    opacity: 0.8;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8)) 
                drop-shadow(0 0 60px rgba(247, 147, 30, 0.6))
                drop-shadow(0 0 90px rgba(138, 43, 226, 0.4));
        transform: translateY(0) scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(255, 107, 53, 1)) 
                drop-shadow(0 0 80px rgba(247, 147, 30, 0.8))
                drop-shadow(0 0 120px rgba(138, 43, 226, 0.6));
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glitch {
    0%, 100% { 
        transform: translate(0);
        opacity: 0.8;
    }
    20% {
        transform: translate(-2px, 2px);
        opacity: 0.9;
    }
    40% {
        transform: translate(-2px, -2px);
        opacity: 0.7;
    }
    60% {
        transform: translate(2px, 2px);
        opacity: 0.9;
    }
    80% {
        transform: translate(2px, -2px);
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #b8b8b8;
    animation: subtitleFade 2s ease-out;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

@keyframes subtitleFade {
    from { 
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: badgesSlide 1s ease-out 0.5s both;
}

@keyframes badgesSlide {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.2));
    border: 2px solid #ff6b35;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    animation: pulse 2s infinite, badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        border-color: #ff6b35;
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
        border-color: #f7931e;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: ctaBounce 2s ease-out 1s both;
}

@keyframes ctaBounce {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-button.large {
    padding: 25px 60px;
    font-size: 1.5rem;
}

/* Enhanced Floating Cards */
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.1));
    border: 3px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 20px;
    animation: cardShine 4s infinite;
}

@keyframes cardShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.card-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 40%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-4 {
    top: 80%;
    right: 35%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-15px) rotate(5deg) scale(1.05);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg) scale(1.1);
        opacity: 1;
    }
    75% { 
        transform: translateY(-15px) rotate(5deg) scale(1.05);
        opacity: 0.9;
    }
}

/* Particle Effects */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent);
    background-size: 200px 200px;
    animation: sparkle 10s linear infinite;
    opacity: 0.3;
}

@keyframes sparkle {
    0%, 100% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-bg {
        display: none;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

/* Promo Cards Grid */
.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.8));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
    animation: cardPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes promoCardPulse {
    0%, 100% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.promo-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #ff6b35;
    box-shadow: 
        0 25px 50px rgba(255, 107, 53, 0.4),
        0 0 80px rgba(247, 147, 30, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.promo-card:hover::after {
    opacity: 1;
}

/* Badge */
.promo-card .badge {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.8));
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.usage-count {
    color: #ffffff;
    font-weight: 900;
    font-size: 1rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.6));
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slot Image */
.slot-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.promo-card:hover .slot-image img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.slot-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-card:hover .slot-image::before {
    opacity: 1;
}

/* Slot Name */
.slot-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.promo-card:hover .slot-name {
    color: #ff6b35;
    transform: scale(1.05);
}

/* Promo Details */
.promo-details {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.promo-card:hover .promo-details {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Promo Code */
.promo-code {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 107, 53, 0.2));
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: promoCodeShine 3s infinite;
}

@keyframes promoCodeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.promo-card:hover .promo-code {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 107, 53, 0.3));
    transform: scale(1.02);
}

.code {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.code:hover {
    color: #f7931e;
    transform: scale(1.05);
}

.code i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.code:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* Promo Button Styles */
.promo-card .play-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.promo-card .play-btn,
.play-btn[data-link] {
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    font-size: 0.95rem;
}: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;

/* Promo Button (Gift) */
.promo-card .promo {
    background: linear-gradient(45deg, #4caf50, #45a049) !important;
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.promo-card .play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.promo-card .play-btn:hover::before {
    left: 100%;
}

.promo-card .play-btn:hover,
.play-btn[data-link]:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5) !important;
    background: linear-gradient(45deg, #f7931e, #ff6b35) !important;
}

.promo-card .play-btn:active,
.play-btn[data-link]:active {
transform: scale(1.02) !important;
}

/* Promo Button Hover Effects */
.promo-card .play-btn:hover {
transform: scale(1.05) !important;
box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5) !important;
background: linear-gradient(45deg, #f7931e, #ff6b35) !important;
filter: brightness(1.1);
}

.promo-card:hover .play-btn i {
    transform: rotate(15deg) scale(1.2) !important;
}

/* Card Hover Effects */
.promo-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border-color: rgba(255, 107, 53, 0.6) !important;
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.4),
        0 0 100px rgba(255, 107, 53, 0.2),
        0 0 150px rgba(255, 107, 53, 0.1);
}

.promo-card:hover .slot-image img {
    transform: scale(1.08) !important;
    filter: brightness(1.15) contrast(1.1) !important;
}

.promo-card:hover .slot-name {
    color: #ff6b35 !important;
    transform: scale(1.03) !important;
}

.promo-card:hover .promo-details {
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

.promo-card:hover .badge {
    transform: translateY(-5px) scale(1.1) !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.8)) !important;
}

.promo-card:hover .usage-count {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9) !important;
}
.validity {
    color: #f7931e;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(247, 147, 30, 0.3);
    transition: all 0.3s ease;
}

.promo-card:hover .validity {
    background: rgba(247, 147, 30, 0.2);
    border-color: #f7931e;
    transform: scale(1.05);
}

/* Responsive Promo Cards */
@media (max-width: 768px) {
    .promo-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-card {
        padding: 20px;
    }
    
    .slot-image {
        height: 150px;
    }
    
    .slot-name {
        font-size: 1.2rem;
    }
    
    .promo-details {
        font-size: 0.9rem;
    }
    
    .code {
        font-size: 1rem;
    }
    
    .promo-card .play-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .promo-card .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
}
.games-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(45, 45, 68, 0.85)), url('../images/1winfon.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border-radius: 18px;
    z-index: 1;
    animation: sectionGlow 10s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
    animation: gameCardPulse 3s ease-in-out infinite;
}

@keyframes gameCardPulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.3; }
}

.game-card:hover::before {
    opacity: 1;
    animation: gameCardHover 0.6s ease-out;
}

@keyframes gameCardHover {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0; }
    100% { transform: scale(1.5) rotate(360deg); opacity: 0.4; }
}

.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #ff6b35;
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(247, 147, 30, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(247, 147, 30, 0.15));
}

.game-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3.5rem;
    position: relative;
    animation: gameIconFloat 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

@keyframes gameIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.game-card:hover .game-image {
    animation: gameIconSpin 0.6s ease-out;
    transform: scale(1.1);
}

@keyframes gameIconSpin {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.game-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.game-card:hover h3 {
    color: #ff6b35;
    transform: scale(1.05);
}

.game-card p {
    color: #b8b8b8;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.game-card:hover p {
    color: #ffffff;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stat {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.2));
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: statPulse 2s ease-in-out infinite;
}

.game-card:hover .stat {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(247, 147, 30, 0.4));
    transform: scale(1.1);
}

@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.game-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.game-btn:hover::before {
    left: 100%;
}

.game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}

.game-btn:active {
    transform: scale(1.02);
}

/* Enhanced Bonus Section */
.bonus-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.02));
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    animation: bonusGlow 8s ease-in-out infinite alternate;
}

@keyframes bonusGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: bonusBorder 3s linear infinite;
}

@keyframes bonusBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    animation: bonusCardPulse 4s ease-in-out infinite;
}

@keyframes bonusCardPulse {
    0%, 100% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.bonus-card:hover::after {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    animation: bonusIconBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

@keyframes bonusIconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.bonus-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.bonus-card:hover h3 {
    color: #ff6b35;
    transform: scale(1.05);
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.bonus-card p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.bonus-features {
    list-style: none;
    text-align: left;
}

.bonus-features li {
    color: #a0a0a0;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(22, 33, 62, 0.9) 0%, 
        rgba(15, 15, 30, 0.8) 50%, 
        rgba(20, 20, 21, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 75% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.feature p {
    color: #a0a0a0;
}

/* SEO Section */
.seo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 107, 53, 0.05));
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    animation: seoGlow 15s ease-in-out infinite alternate;
}

@keyframes seoGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.seo-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: seoTitleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

@keyframes seoTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(247, 147, 30, 1)); }
}

.seo-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.seo-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.seo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: seoBlockBorder 4s linear infinite;
}

@keyframes seoBlockBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.seo-block:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.seo-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.seo-block:hover h3 {
    color: #ff6b35;
    transform: scale(1.05);
}

.seo-block p {
    color: #b8b8b8;
    margin-bottom: 25px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.seo-block:hover p {
    color: #ffffff;
}

/* Promo Codes */
.promo-codes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.promo-item:hover {
    transform: scale(1.05);
    border-color: #ff6b35;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.promo-name {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.1rem;
}

.promo-value {
    color: #f7931e;
    font-weight: 600;
}

/* Games List */
.games-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.game-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
}

.game-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.game-info strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.game-info span {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Countries Grid */
.countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.country-tag:hover {
    transform: scale(1.1);
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.payment-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

/* App Features */
.app-features {
    list-style: none;
    padding: 0;
}

.app-features li {
    color: #b8b8b8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    animation: checkMarkPulse 2s ease-in-out infinite;
}

@keyframes checkMarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.seo-block:hover .app-features li {
    color: #ffffff;
    transform: translateX(5px);
}

/* Bonus List */
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-item {
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: scale(1.05);
    border-color: #ff6b35;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.bonus-item strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.bonus-item p {
    color: #f7931e;
    margin: 0;
}

/* FAQ */
.seo-faq {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 20px;
}

.seo-faq h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
}

.faq-item strong {
    color: #ff6b35;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.faq-item p {
    color: #b8b8b8;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-item:hover p {
    color: #ffffff;
}

/* Responsive SEO Section */
@media (max-width: 768px) {
    .seo-title {
        font-size: 2.5rem;
    }
    
    .seo-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-block {
        padding: 20px;
    }
    
    .countries-grid {
        justify-content: center;
    }
    
    .promo-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(20, 20, 21, 0.9) 0%, 
        rgba(26, 26, 46, 0.8) 50%, 
        rgba(22, 33, 62, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.contact-info p {
    color: #a0a0a0;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #3a3a3a;
    transform: translateX(5px);
}

.method-icon {
    font-size: 2rem;
    min-width: 40px;
    color: #00d4ff;
}

.cta-box {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.cta-box p {
    color: #a0a0a0;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 50px 0 20px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo h3 span {
    color: #00d4ff;
}

.footer-logo p {
    color: #a0a0a0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        height: 55px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #141415 !important;
        z-index: 1000 !important;
        border-bottom: 1px solid #2a2a2a !important;
    }

    .navbar {
        padding: 0 12px !important;
        margin: 0 !important;
        height: 100% !important;
    }

    .nav-container {
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }

    .logo img {
        height: 35px !important;
        width: auto !important;
    }

    .nav-menu {
        display: flex !important;
        list-style: none !important;
        gap: 10px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-menu li {
        position: relative !important;
    }

    .nav-menu li a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
        border-radius: 25px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 107, 53, 0.3) !important;
        white-space: nowrap !important;
    }

    .play-btn {
        background: #00d4ff !important;
        color: #141415 !important;
        border: none !important;
        padding: 8px 20px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        font-size: 0.9rem !important;
        height: auto !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        z-index: 1000 !important;
    }

    .language-switcher {
        display: flex !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border: 1px solid #ff6b35 !important;
        border-radius: 25px !important;
        padding: 4px !important;
        gap: 4px !important;
        margin-left: 10px !important;
    }

    .lang-btn {
        background: transparent !important;
        border: none !important;
        color: #ffffff !important;
        padding: 4px 8px !important;
        border-radius: 20px !important;
        font-size: 0.75rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .lang-btn.active {
        background: #ff6b35 !important;
        color: #ffffff !important;
    }

    body {
        padding-top: 55px !important;
        margin: 0 !important;
    }

    body::before, body::after {
        opacity: 0.7 !important;
    }
}

@media (max-width: 480px) {
    .header {
        height: 50px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar {
        padding: 0 8px !important;
        margin: 0 !important;
    }

    .nav-container {
        padding: 0 15px !important;
        gap: 8px !important;
    }

    .logo img {
        height: 30px !important;
    }

    .nav-menu {
        gap: 8px !important;
        margin: 0 !important;
    }

    .nav-menu li a {
        font-size: 0.8rem !important;
        padding: 4px 8px !important;
    }

    .play-btn {
        padding: 6px 16px !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
    }

    .language-switcher {
        padding: 3px !important;
        margin-left: 8px !important;
    }

    .lang-btn {
        padding: 3px 6px !important;
        font-size: 0.7rem !important;
    }

    body {
        padding-top: 50px !important;
        margin: 0 !important;
    }

    body::before, body::after {
        opacity: 0.6 !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .bonus-card {
        padding: 30px 20px;
    }
}

/* SEO Specific Section Styles */
.seo-specific {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 15px;
    margin: 20px 0;
}

.seo-specific h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.specific-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.specific.promo-card {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.specific-card {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.specific-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.6);
}

.specific-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.specific-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.specific-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Region Tags Styles */
.seo-region {
    position: relative;
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(45, 45, 68, 0.85)), url('../images/1winfon.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    overflow: hidden;
}

.seo-region::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border-radius: 18px;
    z-index: 1;
}

.seo-region > * {
    position: relative;
    z-index: 2;
}

.seo-region h3 {
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.region-group {
    margin-bottom: 40px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.region-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.region-group h4 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.region-tag {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.region-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8c42, #ffa500);
}

.region-tag.crypto {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-color: rgba(26, 26, 26, 0.3);
}

.region-tag.crypto:hover {
    border-color: rgba(26, 26, 26, 0.6);
    background: linear-gradient(135deg, #2d2d44, #3d3d5c);
}

@media (max-width: 768px) {
    .seo-region {
        padding: 25px;
        margin: 25px 0;
    }
    
    .seo-region h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .region-group {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .region-group h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .region-tags {
        gap: 8px;
    }
    
    .region-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .seo-region {
        padding: 20px;
        margin: 20px 0;
    }
    
    .seo-region h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .region-group {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .region-group h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .region-tags {
        gap: 6px;
    }
    
    .region-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Additional Mobile Styles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .bonus-card {
        padding: 30px 20px;
    }
    
    .seo-specific {
        padding: 20px 0;
        margin: 10px 0;
    }
    
    .specific-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    .specific-card {
        padding: 20px;
    }
}
