* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #ffd700;
    --text-color: #ffffff;
    --text-secondary: #b8b8b8;
    --border-color: #2d2d44;
    --hover-color: #0f3460;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    gap: 5px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: var(--accent-color);
    color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
}

.hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c73650 100%);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    margin: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
    background: linear-gradient(135deg, #c73650 0%, var(--accent-color) 100%);
}

.cta-buttons {
    text-align: center;
    margin: 30px 0;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--gold-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.section-intro {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(22, 33, 62, 0.8);
    min-width: 600px;
}

.info-table th {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--gold-color);
}

.info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:hover {
    background: rgba(233, 69, 96, 0.1);
}

.info-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.steps-list,
.bonus-list,
.games-list,
.withdrawal-list,
.support-list {
    margin: 20px 0;
    padding-left: 30px;
}

.steps-list li,
.bonus-list li,
.games-list li,
.withdrawal-list li,
.support-list li {
    margin: 10px 0;
    line-height: 1.8;
}

.steps-list li {
    list-style-type: decimal;
}

.bonus-list li,
.games-list li,
.withdrawal-list li,
.support-list li {
    list-style-type: disc;
}

/* FAQ */
.faq-item {
    margin: 30px 0;
    padding: 20px;
    background: rgba(22, 33, 62, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--gold-color);
}

.faq-question {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--gold-color);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.3em;
    margin: 20px 0 10px 0;
    color: var(--gold-color);
}

/* Footer */
.footer {
    background: rgba(15, 52, 96, 0.8);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 2px solid var(--accent-color);
}

.footer-content p {
    margin: 10px 0;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        justify-content: center;
        gap: 10px;
    }

    .nav-link {
        font-size: 0.9em;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-text {
        font-size: 1em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .table-wrapper {
        margin: 20px -20px;
    }

    .info-table {
        font-size: 0.9em;
    }

    .info-table th,
    .info-table td {
        padding: 10px 8px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
        margin: 15px 5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.3em;
    }

    .nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        text-align: center;
        width: 100%;
    }
}

