* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #24bf92;
    --accent-dark: #1a9d75;
    --accent-light: #2dd4a5;
    --dark-bg: #0a0d14;
    --dark-card: #12161f;
    --dark-elevated: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #b4bcd0;
    --text-tertiary: #7a8396;
    --border-subtle: #252a38;
    --gradient-accent: linear-gradient(135deg, #24bf92 0%, #1a9d75 100%);
    --gradient-bg: linear-gradient(180deg, #0a0d14 0%, #12161f 100%);
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.6);
    --glow-accent: 0 0 24px rgba(36, 191, 146, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Mobile Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-card);
    padding: 14px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    gap: 14px;
    border-top: 2px solid var(--accent);
}

.mobile-action-btn {
    flex: 1;
    padding: 15px 24px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    letter-spacing: 0.3px;
}

.login-btn {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.login-btn:hover {
    background: var(--accent);
    color: white;
}

.register-btn {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}

/* Navigation */
.navbar {
    background: var(--dark-card);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid var(--border-subtle);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-1,
.brand-logo-2 {
    height: 38px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

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

.nav-actions {
    display: flex;
    gap: 14px;
}

.nav-btn {
    padding: 11px 26px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.3px;
}

.nav-btn.login {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.nav-btn.login:hover {
    background: var(--accent);
    color: white;
}

.nav-btn.signup {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(36, 191, 146, 0.3);
}

.nav-btn.signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.bar {
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 13, 20, 0.92) 0%, rgba(26, 30, 42, 0.88) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(36, 191, 146, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(36, 191, 146, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.cta-primary,
.cta-secondary {
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cta-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-accent);
}

.cta-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.cta-secondary:hover {
    background: var(--accent);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
}

.hero-banner-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--dark-bg);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.feature-card {
    background: var(--dark-card);
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(36, 191, 146, 0.2);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-text {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Section Styling */
.games-section,
.bonus-section,
.info-section,
.payment-section {
    padding: 80px 0;
}

.games-section {
    background: var(--dark-card);
}

.bonus-section {
    background: var(--dark-bg);
}

.info-section {
    background: var(--dark-card);
}

.payment-section {
    background: var(--dark-bg);
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Games Tabs */
.games-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: var(--dark-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent);
}

/* Games List */
.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.game-box {
    background: var(--dark-elevated);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
}

.game-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(36, 191, 146, 0.3);
}

.game-visual {
    aspect-ratio: 16/10;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-emoji {
    font-size: 68px;
}

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

.game-hover {
    position: absolute;
    inset: 0;
    background: rgba(36, 191, 146, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-box:hover .game-hover {
    opacity: 1;
}

.play-text {
    color: white;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.game-details {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-name {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.game-tag {
    background: rgba(36, 191, 146, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

.action-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.3);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-accent);
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.bonus-box {
    background: var(--dark-elevated);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bonus-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(36, 191, 146, 0.3);
}

.bonus-box.highlight {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(36, 191, 146, 0.2);
}

.bonus-label {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
}

.bonus-header {
    text-align: center;
    margin-bottom: 24px;
}

.bonus-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.bonus-header h3 {
    font-size: 22px;
    color: var(--text-primary);
}

.bonus-value {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 28px;
}

.bonus-list {
    list-style: none;
    margin-bottom: 28px;
}

.bonus-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-action {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-accent);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-action:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.4);
}

/* Info Section */
.info-content {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.info-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.info-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.highlight-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--dark-elevated);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.highlight-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.highlight-text {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Payment Section */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.payment-card {
    background: var(--dark-elevated);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.payment-img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.3s ease;
}

.payment-card:hover .payment-img {
    filter: brightness(1) contrast(1.2);
}

.payment-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.payment-card p {
    font-size: 14px;
    color: var(--text-tertiary);
}

.payment-details {
    background: var(--dark-elevated);
    padding: 36px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    border: 1px solid var(--border-subtle);
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    color: var(--text-tertiary);
    font-size: 14px;
}

.detail-value {
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
}

/* Bonus Steps Section */
.bonus-steps {
    margin: 56px 0;
    background: var(--dark-elevated);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

.bonus-steps h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-primary);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Additional Info Section */
.additional-info {
    margin: 56px 0;
}

.additional-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.additional-info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.additional-info strong {
    color: var(--accent);
}

/* Conclusion Section */
.conclusion-section {
    margin: 56px 0;
    background: var(--dark-elevated);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--accent);
}

.conclusion-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.conclusion-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.final-conclusion {
    margin-top: 32px;
    padding: 32px;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.final-conclusion h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent);
    text-align: center;
}

.final-conclusion p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-1,
.footer-logo-2 {
    height: 36px;
    width: auto;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

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

.link-group h4 {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 6px;
}

.license-info {
    color: var(--text-secondary);
}

.footer-warning p {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--dark-card);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-strong);
        z-index: 998;
        border-bottom: 2px solid var(--border-subtle);
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-link {
        padding: 16px;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-action-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 85px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .games-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .info-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .bonus-steps {
        padding: 24px;
        margin: 40px 0;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .step-item:hover {
        transform: translateY(-4px);
    }
    
    .conclusion-section {
        padding: 24px;
        margin: 40px 0;
    }
    
    .conclusion-section h2 {
        font-size: 28px;
    }
    
    .final-conclusion {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .section-container,
    .footer-container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}