.ambient-background {
    display: none;
}

.orb {
    display: none;
}

.glass-nav {
    position: relative;
}

.hero {
    width: min(calc(100% - 32px), var(--container));
    min-height: auto;
    margin: 32px auto;
    padding: 0;
    display: block;
    background: linear-gradient(135deg, #0d1b2a 0%, #14213d 50%, #0a2818 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

/* Animated background orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.35) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 240px;
    height: 240px;
    bottom: -60px;
    left: 10%;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.3) 0%, transparent 70%);
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(251, 188, 4, 0.2) 0%, transparent 70%);
    animation-delay: -5s;
}

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

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 56px 48px;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(251, 188, 4, 0.4);
    background: rgba(251, 188, 4, 0.12);
    color: #fbbc04;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.hero-title-accent {
    display: inline;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-title-highlight {
    display: inline;
    background: linear-gradient(90deg, var(--accent-3), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Plain (non-gradient) text in hero title — explicit white override */
.hero-title-plain {
    display: inline;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
}

.hero-desc {
    margin-top: 18px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.45);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 115, 232, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 4px 20px rgba(26, 115, 232, 0.45); }
    50% { box-shadow: 0 4px 32px rgba(52, 168, 83, 0.7); }
}

.animate-pulse-btn {
    animation: pulseBtn 2.5s ease-in-out infinite;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.trust-item i {
    color: var(--accent-2);
    font-size: 0.85rem;
}

/* Hero right column — stat cards */
.hero-visual {
    flex-shrink: 0;
    width: 220px;
}

.hero-card-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-4px);
}

.hero-stat-card--accent {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.08);
}

.hsc-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-stat-card--accent .hsc-icon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-3);
}

.hsc-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hsc-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.hsc-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.ad-wrapper {
    margin-top: 32px;
}

/* Shared CTA buttons used outside hero */
.btn-green,
.btn-yellow,
.dot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-green {
    background: var(--accent-2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-yellow {
    background: var(--accent-3);
    color: #000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-green:hover,
.btn-yellow:hover,
.dot-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


.game-features,
.latest-news {
    padding: 48px 0 0;
}

.dark-panel-bg,
.fb-share-inner,
.info-section,
.latest-news .container {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-panel);
    box-shadow: var(--shadow-md);
}

.dark-panel-bg {
    padding: 40px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.section-header .section-title {
    max-width: 100%;
    margin-bottom: 0;
}

.footer-register-banner {
    width: min(calc(100% - 32px), var(--container));
    margin: 4rem auto;
    padding: 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.footer-register-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-register-banner h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    max-width: 600px;
    line-height: 1.2;
}

.btn-banner-action {
    background: var(--accent);
    color: #fff;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-banner-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
    background: #1c81ff;
    color: #fff;
}



.text-white {
    color: var(--text-main);
}

.text-green {
    color: var(--accent-2);
}

.text-muted,
.text-muted-light {
    color: var(--text-muted);
}

.grid-container {
    display: grid;
    gap: 24px;
}

.cards-3-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-card,
.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-panel);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.game-card:hover,
.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-img-wrapper,
.news-img-container {
    overflow: hidden;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.card-img-wrapper img,
.news-img-container img {
    transition: transform 0.7s ease;
}

.game-card:hover img,
.news-card:hover img {
    transform: scale(1.06);
}

.game-info,
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px 24px;
    text-align: center;
}

.game-info h3,
.news-content h3 {
    font-size: 1.22rem;
    line-height: 1.3;
}

.game-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.dot-btn {
    width: 48px;
    height: 48px;
    margin-top: auto;
    background: var(--bg-soft);
    color: var(--text-muted);
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot-btn::before {
    content: '\f061'; /* FontAwesome Right Arrow */
}

.dot-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* New responsive classes */
.ad-img-responsive {
    width: 100%;
    height: auto;
    min-height: 100px;
    display: block;
    border-radius: 12px;
}

.game-card-img-container {
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.game-card-img {
    border-radius: 12px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card-desc {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}

.popular-game-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.popular-game-img-container {
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-img-container {
    width: 45%;
}

.info-hero-img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.info-title {
    font-size: 2.5rem;
    line-height: 1.2;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .game-card-img {
        height: 180px;
    }
    
    .popular-game-img-container {
        height: 200px;
    }
    
    .info-hero-img {
        height: 300px;
    }
    
    .info-title {
        font-size: 1.8rem;
    }
}

.payment-bar {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.pay-logo {
    height: 28px;
    object-fit: contain;
    filter: saturate(0) brightness(10);
    opacity: 0.86;
}

.pay-text {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.fb-share-section,
.info-section {
    margin-top: 48px;
}

.fb-share-inner {
    padding: 12px;
}

.countdown .cd-item {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cd-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    opacity: 0.8;
}

.cd-item .num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.cd-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

.countdown .colon {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    padding-top: 10px;
}

.info-section {
    padding: 16px;
}

.info-grid {
    padding: 18px;
}

.info-img img {
    min-height: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.check-list li {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.check-list li:hover {
    border-color: rgba(0, 255, 0, 0.2);
    background: rgba(0, 255, 0, 0.03);
    transform: translateX(8px);
}

.check-list i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--accent-2));
}

.news-grid.modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content a.text-muted {
    margin-top: auto;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-content a.text-muted::after {
    content: ' +';
}

/* Features Section */
.features-section {
    padding: 48px 0 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-panel);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), #4285f4);
    color: #ffffff;
    font-size: 1.5rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 48px 0 0;
}

.testimonials-inner {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%); */
    box-shadow: var(--shadow-sm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:nth-child(2) { border-top-color: var(--accent-2); }
.testimonial-card:nth-child(3) { border-top-color: var(--accent-3); }

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.testimonial-stars {
    color: var(--accent-3);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 0.8rem;
    color: var(--accent);
}

/* FAQ Section */
.faq-section {
    padding: 48px 0 0;
}

.faq-inner {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-panel);
    box-shadow: var(--shadow-sm);
}

.faq-list {
    max-width: 800px;
    margin: 32px auto 0;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-panel);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-inner,
    .faq-inner {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }
    
    .feature-item {
        padding: 24px 20px;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
}

.how-it-works-inner {
    padding: 60px 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    box-shadow: var(--shadow-lg);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    position: relative;
    padding: 32px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1;
}

.step-card:nth-child(1) .step-number, .step-card:nth-child(1) .step-icon { background-color: var(--accent); }
.step-card:nth-child(3) .step-number, .step-card:nth-child(3) .step-icon { background-color: var(--accent-2); }
.step-card:nth-child(5) .step-number, .step-card:nth-child(5) .step-icon { background-color: var(--accent-3); }

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.step-card:nth-child(1):hover { border-color: var(--accent); }
.step-card:nth-child(3):hover { border-color: var(--accent-2); }
.step-card:nth-child(5):hover { border-color: var(--accent-3); }

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.75rem;
    color: #fff;
    transition: all 0.3s;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-arrow {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--bg-panel);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    transition: all 0.3s;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--line);
}

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

.game-card {
    border-radius: var(--radius-lg);
    background: var(--bg-panel);
    border: 1px solid var(--line);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.game-card .card-img-wrapper {
    height: 180px;
    overflow: hidden;
}

.game-card .popular-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .popular-game-img {
    transform: scale(1.1);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Partners Section */
.partners-section {
    padding: 48px 0 0;
}

.partners-inner {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-panel);
    box-shadow: var(--shadow-sm);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.partner-logo:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    padding: 48px 0 0;
}

.newsletter-inner {
    padding: 48px;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent) 0%, #4285f4 100%);
    box-shadow: var(--shadow-sm);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.newsletter-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn-green {
    background: #ffffff;
    color: var(--accent);
    box-shadow: none;
}

.newsletter-form .btn-green:hover {
    background: var(--bg-soft);
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .how-it-works-inner,
    .partners-inner {
        padding: 24px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .partner-logo {
        height: 70px;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .newsletter-inner {
        padding: 32px 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .stat-item {
        padding: 24px 16px;
    }
}

.footer-register-banner {
    margin: 48px auto 0;
    width: min(calc(100% - 32px), var(--container));
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent) 0%, #4285f4 100%);
    box-shadow: var(--shadow-sm);
}

.footer-register-banner .container {
    width: 100%;
    padding: 28px 32px;
}

.glass-footer .footer-top {
    background: var(--bg-panel);
}

.footer-logo {
    filter: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.m-0 {
    margin: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.ms-auto {
    margin-left: auto;
}

.p-0 {
    padding: 0 !important;
}

.p-3 {
    padding: 1rem;
}

.p-5 {
    padding: 3rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.fw-bold {
    font-weight: 700;
}

.fs-5 {
    font-size: 1.25rem;
}

.d-inline-block {
    display: inline-block;
}

.border-0 {
    border: 0 !important;
}

.background-none {
    background: none !important;
}

.d-none {
    display: none;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }
}

@media (max-width: 1100px) {
    .cards-3-col,
    .news-grid.modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-4-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-grid {
        flex-direction: column;
        gap: 24px;
    }

    .info-img {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero,
    .footer-register-banner {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero {
        min-height: auto;
        padding: 0;
        border-radius: var(--radius-md);
    }

    .hero-inner {
        flex-direction: column;
        padding: 32px 20px;
        gap: 28px;
        align-items: flex-start;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-card-stack {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-stat-card {
        flex: 1;
        min-width: 140px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        min-height: 46px;
        padding: 0 20px;
        font-size: 0.9rem;
    }

    .dark-panel-bg,
    .latest-news .container,
    .fb-share-inner {
        border-radius: var(--radius-md);
    }

    .dark-panel-bg,
    .latest-news .container {
        padding: 24px 16px;
    }

    .news-grid.modern-grid,
    .cards-3-col,
    .cards-4-col {
        grid-template-columns: 1fr;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown .colon {
        display: none;
    }

    .fb-share-inner,
    .footer-register-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .payment-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pay-text {
        margin-left: 0;
    }

    .p-5 {
        padding: 1.5rem;
    }

    .px-5 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Popular Games Section - Small Grid */
.top-games-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.top-games-section .section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.title-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.view-all {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--accent);
}

.small-games-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.small-game {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.small-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.small-game:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.small-game:hover img {
    transform: scale(1.1);
}

@media (max-width: 1100px) {
    .small-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .small-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}
