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

:root {
    --primary-color: #FFD700;
    --primary-dark: #FFC107;
    --bg-dark: #1a1a1a;
    --bg-card: #2a2a2a;
    --bg-card-hover: #333333;
    --text-color: #ffffff;
    --text-light: #b0b0b0;
    --border-color: #404040;
    --border-light: #555555;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.4);
    --red-badge: #e53935;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background: linear-gradient(to right, 
        rgba(30, 50, 40, 0.95) 0%, 
        rgba(26, 26, 26, 0.98) 30%, 
        rgba(26, 26, 26, 0.98) 70%, 
        rgba(50, 30, 25, 0.95) 100%),
        #1a1a1a;
    background-attachment: fixed;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(30, 60, 45, 0.2) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(80, 45, 35, 0.15) 100%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background-color: #1a1a1a !important;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background-color: var(--bg-card);
    color: var(--text-color);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header .btn-outline {
    background-color: var(--bg-card);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.header .btn-outline:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-light);
    color: var(--text-color);
}

.header .btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
}

.header .btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero-wrapper {
    background: transparent;
    padding: 60px 0 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.hero {
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-light);
    max-width: 100%;
    line-height: 1.6;
}

.hero-subtitle strong {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-color);
}

.hero-description {
    font-size: 16px;
    margin-bottom: 32px;
    color: var(--text-light);
    max-width: 100%;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Bonus Card */
.bonus-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow);
}

.bonus-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--red-badge);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.bonus-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.bonus-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: left;
}

/* Promotions */
.promotions {
    background: transparent;
    padding: 80px 0;
}

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

.promotion-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.promotion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-light);
    background-color: var(--bg-card-hover);
}

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

.promotion-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.promotion-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.promotion-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Overview */
.overview {
    background: transparent;
    padding: 80px 0;
}

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

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

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

.overview-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* App Section */
.app-section {
    background: transparent;
    padding: 80px 0;
}

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

.app-item {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.app-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background-color: var(--bg-card-hover);
}

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

.app-description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Freebet Section */
.freebet-section {
    background: transparent;
    padding: 80px 0;
}

.freebet-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.freebet-features {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 48px;
    padding: 0;
}

.freebet-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-color);
    font-size: 16px;
}

.freebet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.freebet-steps {
    text-align: center;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.freebet-steps-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-color);
}

.steps-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 32px;
    padding-left: 24px;
    color: var(--text-light);
}

.steps-list li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 16px;
}

/* Footer */
.footer {
    background: transparent;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 40px 0;
    position: relative;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-logo:hover {
    color: var(--primary-color);
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-age {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .header-left {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .header-buttons {
        justify-content: stretch;
        width: 100%;
    }

    .header-buttons .btn {
        flex: 1;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .promotions-grid,
    .overview-grid,
    .app-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-wrapper {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 14px;
    }

    .bonus-card {
        padding: 24px;
    }

    .promotions,
    .overview,
    .app-section,
    .freebet-section {
        padding: 60px 0;
    }
}
