:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFD700;
    --dark-bg: #0A0E27;
    --dark-secondary: #1A1F3A;
    --dark-card: #151932;
    --text-light: #E8E9F3;
    --text-muted: #A8AAB8;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 107, 53, 0.2);
    --shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    overflow-x: hidden;
}

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

.header {
    background: var(--dark-secondary);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.125rem;
}

.header-nav {
    margin: 0 2rem;
    padding-left: 0 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

a.header-cta-mobile {
    display: none;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 44px;
    min-height: 44px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.cta-button {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    }
}

.hero-section {
    background: var(--gradient-dark);
    padding: 8rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.hero-cta {
    font-size: 1.125rem;
    padding: 1.125rem 3rem;
    position: relative;
    z-index: 1;
}

.section {
    padding: 6rem 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.feature-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.bonuses-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.payment-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.payment-table {
    width: 100%;
    background: var(--dark-card);
    border-collapse: collapse;
}

.payment-table thead {
    background: var(--dark-secondary);
}

.payment-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.payment-table td {
    padding: 1.125rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
}

.payment-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

.banking-info {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
}

.info-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

.responsible-tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    background: var(--dark-card);
    padding: 2.25rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 215, 0, 0.3);
}

.tool-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.tool-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-question {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-answer p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.footer {
    background: var(--dark-secondary);
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    padding: 3rem 1.5rem 2rem;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
    padding: 0.5rem;
    display: inline-block;
    min-height: 44px;
    line-height: 32px;
}

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

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

.footer-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }

    .header-container {
        padding: 1rem;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-secondary);
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
        margin: 0;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .nav-link {
        min-height: 44px;
        line-height: 44px;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .header-cta {
        display: none;
    }

    .header-mobile-actions {
        display: flex;
    }

    a.header-cta-mobile {
        display: inline-block;
        padding: 0.5rem 1.1rem;
        font-size: 0.875rem;
        min-height: 38px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
        justify-items: center;
    }

    .hero-section {
        padding: 5rem 1.5rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.0625rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .games-grid,
    .responsible-tools {
        grid-template-columns: 1fr;
    }

    .payment-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .payment-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo-text {
        font-size: 1.375rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .payment-table {
        font-size: 0.875rem;
    }

    .payment-table th,
    .payment-table td {
        padding: 0.75rem 0.5rem;
    }

    .header-container {
        padding: 0.75rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .hero-section {
        padding: 4rem 1rem 3rem;
    }
}

@media (max-width: 430px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header-container {
        padding: 0.75rem 1rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .hero-section {
        padding: 3.5rem 1rem 2.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .payment-table {
        font-size: 0.8125rem;
    }

    .payment-table th,
    .payment-table td {
        padding: 0.625rem 0.375rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .section-intro {
        font-size: 1rem;
    }
}
