/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* The Dog House Color Palette */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5A;
    --secondary: #4ECDC4;
    --secondary-dark: #3DB8B0;
    --accent: #FFE66D;
    --accent-dark: #F5D93A;
    --dark: #1A1A2E;
    --dark-light: #16213E;
    --dark-medium: #0F3460;
    --text: #FFFFFF;
    --text-muted: #B8B8D1;
    --text-dark: #2D2D44;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFE66D 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(15,52,96,0.9) 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-light: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(255,107,53,0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.5);
}

.btn--secondary {
    background: var(--gradient-secondary);
    color: var(--dark);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(78,205,196,0.4);
}

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

.btn--outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn--large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn--header {
    padding: 12px 24px;
    font-size: 14px;
    background: var(--gradient-primary);
    color: var(--dark);
}

.btn--sticky {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 50px;
}

.btn__icon {
    font-size: 24px;
}

.btn__bonus {
    background: var(--dark);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--text);
    background: rgba(255,107,53,0.15);
}

.nav__link--active {
    color: var(--primary);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav__burger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Dropdown menu */
.nav__item--dropdown {
    position: relative;
}

.nav__item--dropdown > .nav__link::after {
    content: '▼';
    font-size: 8px;
    margin-left: 5px;
    opacity: 0.7;
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: rgba(26,26,46,0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 1000;
}

.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255,255,255,0.15);
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown li {
    margin: 0;
}

.nav__dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.nav__dropdown li a:hover {
    background: rgba(255,107,53,0.15);
    color: var(--primary);
}

.nav__dropdown li:first-child a {
    border-radius: var(--radius) var(--radius) 0 0;
}

.nav__dropdown li:last-child a {
    border-radius: 0 0 var(--radius) var(--radius);
}

/* ===== MAIN ===== */
.main {
    padding-top: 80px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

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

.hero__content {
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,107,53,0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero__stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.hero__stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero__image {
    position: relative;
    z-index: 1;
}

.hero__image img {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero__decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(100px);
}

.hero__decor--1 {
    top: 10%;
    right: 10%;
}

.hero__decor--2 {
    bottom: 10%;
    left: 5%;
    background: var(--secondary);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
    position: relative;
}

.section--alt {
    background: rgba(255,255,255,0.02);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section__title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__desc {
    font-size: 18px;
    color: var(--text-muted);
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature {
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.06);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 36px;
    overflow: hidden;
}

.feature__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== GAME INFO ===== */
.game-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-info__image {
    position: relative;
}

.game-info__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.game-info__content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.game-info__content h2 span {
    color: var(--primary);
}

.game-info__text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.game-info__list {
    margin-bottom: 30px;
}

.game-info__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
}

.game-info__list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 12px;
    color: var(--dark);
    font-weight: 700;
}

/* ===== SPECS TABLE ===== */
.specs {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
}

.specs__title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.specs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.specs__item {
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.specs__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.specs__value {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

/* ===== SYMBOLS ===== */
.symbols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.symbol {
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.symbol:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.symbol__image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: var(--radius);
    overflow: hidden;
}

.symbol__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.symbol__name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.symbol__payout {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

/* ===== HOW TO PLAY ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 40px 30px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.step__title {
    font-size: 20px;
    margin: 20px 0 10px;
}

.step__text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq__question:hover {
    background: rgba(255,255,255,0.03);
}

.faq__icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    color: var(--dark);
    transition: var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer-inner {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta {
    text-align: center;
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/cta-pattern.png') center/cover;
    opacity: 0.1;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta__text {
    font-size: 20px;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--dark);
    color: var(--text);
}

.cta .btn:hover {
    background: var(--dark-light);
}

/* ===== DOWNLOAD SECTION ===== */
.download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.download-card {
    padding: 50px 40px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.download-card__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.download-card__icon img {
    width: 100%;
    height: 100%;
}

.download-card__title {
    font-size: 28px;
    margin-bottom: 15px;
}

.download-card__text {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.download-card__features {
    text-align: left;
    margin-bottom: 30px;
}

.download-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
}

.download-card__features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

/* ===== MIRROR SECTION ===== */
.mirror-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.mirror-box__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 60px;
}

.mirror-box__title {
    font-size: 32px;
    margin-bottom: 15px;
}

.mirror-box__text {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.mirror-box__url {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 30px;
    border: 1px dashed var(--accent);
}

/* ===== REGISTRATION ===== */
.register-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.register-form__title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.register-form .btn {
    width: 100%;
    margin-top: 10px;
}

.register-form__bonus {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--primary);
}

.register-form__bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.register-form__bonus-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs__item:not(:last-child)::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumbs__link {
    color: var(--text-muted);
}

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

.breadcrumbs__current {
    color: var(--text);
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text);
}

.content-block h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text);
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
}

.content-block ul,
.content-block ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-block li {
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
    list-style: disc;
}

.content-block ol li {
    list-style: decimal;
}

.content-block strong {
    color: var(--text);
    font-weight: 600;
}

/* ===== ADVANTAGES ===== */
.advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage {
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.advantage__title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.advantage__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== RATING ===== */
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating__stars {
    display: flex;
    gap: 4px;
}

.rating__star {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.rating__value {
    font-size: 18px;
    font-weight: 700;
}

.rating__count {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0,0,0,0.3);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer__logo img {
    height: 42px;
    width: auto;
}

.footer__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__age {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer__age img {
    width: 40px;
    height: 40px;
}

.footer__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer__nav li {
    margin-bottom: 12px;
}

.footer__nav a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer__provider img {
    margin-bottom: 15px;
}

.footer__provider p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer__partners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer__partners img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: var(--transition);
}

.footer__partners img:hover {
    opacity: 1;
}

.footer__copy {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer__disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image img {
        max-width: 400px;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-info {
        grid-template-columns: 1fr;
    }
    
    .specs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .symbols {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header__inner {
        flex-wrap: wrap;
    }
    
    .nav__burger {
        display: flex;
    }
    
    .nav__list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav__list.active {
        transform: translateY(0);
    }
    
    .nav__link {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .btn--header {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__subtitle {
        font-size: 18px;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero__stat {
        width: 100%;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section__title {
        font-size: 28px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .specs__grid {
        grid-template-columns: 1fr;
    }
    
    .symbols {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .download-cards {
        grid-template-columns: 1fr;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__age {
        justify-content: center;
    }
    
    .cta__title {
        font-size: 32px;
    }
    
    .advantages {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta {
        left: 20px;
        right: 20px;
    }
    
    .btn--sticky {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .section__title {
        font-size: 24px;
    }
    
    .mirror-box,
    .register-form {
        padding: 30px 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
