:root {
    --primary-bg: #0B1120;
    --surface-dark: #111927;
    --surface-light: #1F2937;
    --accent-color: #FF5A1F;
    --accent-hover: #FF7A45;
    --accent-glow: rgba(255, 90, 31, 0.4);

    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;
    --text-dark: #111927;

    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(17, 24, 39, 0.75);

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--accent-glow);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}


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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    color: var(--text-main);
    background-color: var(--primary-bg);
    line-height: 1.7;
    overflow-x: hidden;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--surface-dark);
}

.bg-dark {
    background-color: #050811;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.center {
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.75rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}


.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #E04200);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 90, 31, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
}

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

.btn-outline:hover {
    background: var(--accent-color);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: #FFFFFF;
    color: var(--text-dark);
}

.w-100 {
    width: 100%;
}


h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #FFFFFF, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3,
h4 {
    color: #FFFFFF;
}

p {
    color: var(--text-muted);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.modal-content h2 {
    color: #FFFFFF;
    margin-bottom: 12px;
}


.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 48px);
    max-width: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 9998;
    padding: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-content p {
    color: #E5E7EB;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.3s ease;
}

header.scrolled .header-container {
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: #D1D5DB;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a:hover {
    color: #FFFFFF;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.badge-19 {
    background: rgba(255, 255, 255, 0.05);
    color: #E5E7EB;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.badge-19 i {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #FFFFFF;
}


.hero {
    padding-top: 190px;
    padding-bottom: 120px;
    background: radial-gradient(circle at top right, rgba(255, 90, 31, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(17, 24, 39, 1), var(--primary-bg) 60%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.hero p {
    color: #D1D5DB;
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 500px;
}

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


.placeholder-image {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.placeholder-image img {
    width: 100%;
}


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

.feature-card {
    background: var(--surface-light);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--surface-dark);
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: inline-block;
    padding: 16px;
    background: rgba(255, 90, 31, 0.1);
    border-radius: var(--radius-sm);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}


.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.game-card {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.game-img-placeholder {
    height: 300px;
    background: linear-gradient(190deg, var(--surface-dark) 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 6rem;
    position: relative;
}

.game-img-placeholder img {
    width: 100%;
}

.game-info {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.game-info p {
    margin-bottom: 30px;
    flex-grow: 1;
}


.game-player-area {
    margin-top: 60px;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #000000;
    border-bottom: 1px solid var(--border-color);
}

.player-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.iframe-container {
    height: 700px;
    background: radial-gradient(circle, var(--surface-dark) 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.iframe-placeholder-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}


.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    background: var(--surface-light);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--border-color);
    background: var(--surface-dark);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(255, 90, 31, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}


.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.step-box {
    padding: 30px 20px;
    position: relative;
}

.step-box:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--border-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--surface-light);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 24px auto;
    box-shadow: var(--shadow-glow);
}

.step-box h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}


#trust {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-icon-large {
    font-size: 4.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.trust-content h2 {
    margin-bottom: 24px;
}

.badge-19-large {
    display: inline-block;
    background: rgba(255, 90, 31, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.disclaimer-box {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-color);
    padding: 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 40px 0;
    font-size: 1rem;
    color: #D1D5DB;
    text-align: left;
}


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

.faq-item {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--surface-dark);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    margin: 0;
    color: #D1D5DB;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 31, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-item h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.contact-form-container {
    background: var(--surface-light);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #E5E7EB;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--surface-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.1);
}

.form-status {
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
}

.success-text {
    color: #10B981;
}


.main-footer {
    background: #000000;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent-color);
}

.footer-desc {
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-bottom: 16px;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto 16px auto;
}


@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero p {
        margin: 0 auto 40px auto;
    }

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

    .games-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .step-box::after {
        display: none;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a::after {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
    }

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

    .game-img-placeholder {
        height: 200px;
    }

    .iframe-container {
        height: 400px;
    }
}

.legal-header {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 90, 31, 0.05), transparent 60%);
    border-bottom: 1px solid var(--border-color);
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.legal-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.legal-content {
    padding: 80px 0;
    background: var(--primary-bg);
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.legal-document h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: #E5E7EB;
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-document p {
    margin-bottom: 16px;
    color: #D1D5DB;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-document ul {
    margin-bottom: 24px;
    padding-left: 20px;
    color: #D1D5DB;
}

.legal-document li {
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
    padding-left: 10px;
}

.legal-document li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: -10px;
    top: 0;
    font-weight: bold;
}

.legal-document a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-document a:hover {
    color: var(--accent-hover);
}

@media (max-width: 768px) {
    .legal-document {
        padding: 30px 20px;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }
}