:root {
    --primary: #FF006E;
    --primary-dark: #D90057;
    --secondary: #8338EC;
    --accent: #FFBE0B;
    --dark: #0A0E27;
    --light: #F8F9FA;
    --text: #E8E8E8;
    --text-dark: #1A1A2E;
    --gradient-main: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
    --gradient-accent: linear-gradient(135deg, #FFBE0B 0%, #FB5607 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1A2E 100%);
    --shadow-sm: 0 2px 8px rgba(255, 0, 110, 0.1);
    --shadow-md: 0 8px 24px rgba(255, 0, 110, 0.2);
    --shadow-lg: 0 16px 48px rgba(255, 0, 110, 0.3);
    --shadow-glow: 0 0 32px rgba(255, 190, 11, 0.4);
}

* {
    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);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

section, article, main, header, footer, div {
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    box-shadow: var(--shadow-md);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.header__logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header__nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header__cta {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger__line {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--gradient-dark);
    transition: right 0.4s ease;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}

.mobile-menu[aria-hidden="false"] {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 1rem;
}

.mobile-cta {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    min-width: 44px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: white;
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: var(--shadow-lg), var(--shadow-glow); }
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section__title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 4px;
}

.hero {
    background: var(--gradient-dark);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__title {
    max-width: 1100px;
    margin: 0 auto 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.subsection {
    margin-bottom: 3rem;
}

.subsection__title {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.subsection__subtitle {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.subsection__text {
    color: var(--text);
}

.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.info-table {
    width: 100%;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.info-table th {
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 0, 110, 0.1);
    width: 35%;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover {
    background: rgba(255, 0, 110, 0.05);
}

.overview__text {
    margin-top: 2rem;
    font-size: 1.125rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
    padding: 0;
}

.step-item {
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text);
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.highlight-box,
.info-box,
.schedule-box {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.highlight-box__title,
.info-box__title,
.schedule-box__title {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.list {
    list-style: none;
    padding-left: 0;
}

.list-item {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text);
    font-size: 1.125rem;
}

.list-item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.25rem;
}

.list--schedule .list-item strong {
    color: var(--accent);
}

.card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card__title {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.card__text {
    color: var(--text);
    margin-bottom: 0;
}

.cards-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cards-grid--two-col {
    grid-template-columns: 1fr;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list__title {
    color: var(--accent);
    margin-bottom: 1rem;
}

.games-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.game-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.game-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-card__content {
    padding: 1.5rem;
}

.game-card__title {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.game-card__text {
    color: var(--text);
    margin-bottom: 0;
    font-size: 1rem;
}

.tab-content {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.tab-content__title {
    color: var(--accent);
    margin-bottom: 1rem;
}

.bonus-box {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    max-width: 450px;
}

.bonus-box__image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.bonus-box__content {
    text-align: center;
}

.bonus-box__title {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.list--bonus .list-item {
    font-size: 1.125rem;
    padding: 1rem 0 1rem 2rem;
}

.list--bonus .list-item strong {
    color: var(--accent);
    font-size: 1.25rem;
}

.payment-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.payment-column {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-column__title {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.providers-box {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(131, 56, 236, 0.3);
}

.providers-box__title {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.list--providers .list-item {
    color: var(--text);
}

.list--tools .list-item {
    color: var(--text);
    font-weight: 600;
}

.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item__question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    position: relative;
    color: var(--primary);
    user-select: none;
    font-size: 1.25rem;
}

.faq-item__question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq-item__answer p {
    color: var(--text);
    margin-bottom: 0;
}

.cta-box {
    background: var(--gradient-main);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-box__title {
    color: white;
    margin-bottom: 1rem;
}

.cta-box__text {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--gradient-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 0, 110, 0.2);
}

.footer__content {
    display: grid;
    gap: 2rem;
}

.footer__brand {
    margin-bottom: 1rem;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer__description {
    color: var(--text);
    margin-top: 1rem;
}

.footer__nav-title {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
}

.footer__nav-item {
    margin-bottom: 0.75rem;
}

.footer__nav-link {
    color: var(--text);
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--primary);
}

.footer__disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__text {
    color: var(--text);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.fade-in {
    opacity: 1;
    transform: none;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .header__nav {
        display: block;
    }

    .header__cta {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .cards-grid--two-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 0;
    }

    .hero {
        padding: 10rem 0 8rem;
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__content {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 767px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 100%;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .section__title {
        margin-bottom: 2rem;
    }

    .game-card__image {
        height: 180px;
    }
}

/* Registration Steps */
.registration-steps {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.registration-step {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 0, 110, 0.2);
    box-shadow: var(--shadow-sm);
}

.registration-step__title {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.registration-step__image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    display: block;
}

.registration-step .steps-list {
    margin: 1rem 0 0;
}

.registration-step .step-item {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.registration-step .step-item::before {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-step:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        justify-self: center;
    }
}

@media (min-width: 1024px) {
    .registration-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .registration-step:last-child {
        grid-column: auto;
        max-width: none;
    }
}

/* Showcase Images */
.games-showcase-image,
.bonuses-showcase-image {
    width: 100%;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    display: block;
}

.games-showcase-image {
    border: 2px solid rgba(131, 56, 236, 0.3);
}

.bonuses-showcase-image {
    border: 2px solid rgba(255, 0, 110, 0.3);
}
