:root {
    --bg-light: #fef8fb;
    --bg-card: #ffffff;
    --bg-accent: #fff5f9;
    --pink-primary: #e91e8c;
    --pink-secondary: #ff6bb5;
    --pink-soft: #ffc0e0;
    --purple-deep: #8b1e6f;
    --text-dark: #2d1b2e;
    --text-gray: #6b5866;
    --text-light: #9d8a98;
    --border-subtle: #f3d9e8;
    --success-green: #00c896;
    --warning-orange: #ff8c42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--purple-deep) 100%);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.15);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-icon {
    display: inline-block;
    font-size: 38px;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.action-button {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 11px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.action-button-primary {
    background: #ffffff;
    color: var(--pink-primary);
    border: none;
}

.action-button-primary:hover {
    background: var(--bg-accent);
    transform: translateY(-2px) scale(1.05);
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text h1 .highlight-pink {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .lead-text {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 38px;
    line-height: 1.65;
}

.hero-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 42px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.06);
}

.perk-icon {
    font-size: 26px;
}

.perk-item span {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.cta-btn {
    padding: 18px 44px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-btn-fill {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-secondary) 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.35);
}

.cta-btn-fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(233, 30, 140, 0.45);
}

.cta-btn-outline {
    background: transparent;
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
}

.cta-btn-outline:hover {
    background: var(--bg-accent);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 520px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    width: 160px;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-accent) 100%);
    border-radius: 18px;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 16px 48px rgba(233, 30, 140, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.float-card svg {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

.float-card:nth-child(1) {
    top: 15%;
    left: 5%;
    animation: drift 4s ease-in-out infinite;
}

.float-card:nth-child(2) {
    top: 45%;
    left: 30%;
    animation: drift 4s ease-in-out infinite 1s;
}

.float-card:nth-child(3) {
    top: 10%;
    right: 10%;
    animation: drift 4s ease-in-out infinite 2s;
}

@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
}

.float-card:hover {
    transform: scale(1.12) rotate(0deg) !important;
    border-color: var(--pink-primary);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.35);
}

.float-card:hover svg {
    transform: scale(1.15);
}

/* ===== METRICS BOX ===== */
.metrics-box {
    padding: 70px 0;
    background: var(--bg-card);
}

.metrics-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.metric-block {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-light);
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-primary) 0%, var(--pink-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.metric-block:hover::before {
    transform: scaleX(1);
}

.metric-block:hover {
    transform: translateY(-6px);
    border-color: var(--pink-soft);
    box-shadow: 0 12px 32px rgba(233, 30, 140, 0.15);
}

.metric-icon {
    font-size: 52px;
    margin-bottom: 18px;
    display: block;
}

.metric-value {
    font-size: 46px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--purple-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
}

/* ===== BENEFITS AREA ===== */
.benefits-area {
    padding: 90px 0;
    background: var(--bg-light);
}

.area-header {
    text-align: center;
    margin-bottom: 68px;
}

.area-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.area-subtitle {
    font-size: 19px;
    color: var(--text-gray);
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.7;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-block {
    background: var(--bg-card);
    padding: 42px 38px;
    border-radius: 22px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-block:hover {
    transform: translateY(-8px);
    border-color: var(--pink-primary);
    box-shadow: 0 16px 48px rgba(233, 30, 140, 0.18);
}

.benefit-emoji {
    font-size: 62px;
    margin-bottom: 24px;
    display: block;
}

.benefit-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--pink-primary);
}

.benefit-block p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.75;
}

/* ===== GAMES GRID ===== */
.games-grid-section {
    padding: 90px 0;
    background: var(--bg-accent);
}

.games-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.game-tile {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-tile:hover {
    transform: translateY(-6px);
    border-color: var(--pink-primary);
    box-shadow: 0 14px 40px rgba(233, 30, 140, 0.22);
}

.game-thumb {
    width: 100%;
    height: 190px;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
    position: relative;
    overflow: hidden;
}

.game-thumb::after {
    content: 'ИГРАТЬ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.game-tile:hover .game-thumb::after {
    opacity: 1;
}

.game-details {
    padding: 22px;
}

.game-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.game-meta {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== PROMO TIMELINE ===== */
.promo-timeline {
    padding: 90px 0;
    background: var(--bg-card);
}

.timeline-track {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pink-primary) 0%, var(--purple-deep) 100%);
    transform: translateX(-50%);
}

.timeline-entry {
    display: flex;
    margin-bottom: 56px;
    position: relative;
}

.timeline-entry:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-box {
    width: 46%;
    background: var(--bg-light);
    padding: 34px;
    border-radius: 20px;
    border: 2px solid var(--border-subtle);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-box:hover {
    border-color: var(--pink-primary);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.15);
    transform: scale(1.03);
}

.timeline-entry:nth-child(odd) .timeline-box {
    margin-right: auto;
}

.timeline-entry:nth-child(even) .timeline-box {
    margin-left: auto;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--purple-deep) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 0 24px rgba(233, 30, 140, 0.5);
    z-index: 1;
    border: 4px solid var(--bg-card);
}

.promo-tag {
    display: inline-block;
    background: var(--pink-primary);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-box h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--pink-primary);
}

.timeline-box p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== REVIEWS ZONE ===== */
.reviews-zone {
    padding: 90px 0;
    background: var(--bg-light);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--bg-card);
    padding: 38px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '❝';
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 68px;
    color: var(--pink-soft);
    line-height: 1;
    opacity: 0.4;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--pink-primary);
    box-shadow: 0 14px 40px rgba(233, 30, 140, 0.12);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--purple-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.review-author h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.review-stars {
    color: var(--pink-primary);
    font-size: 15px;
}

.review-content {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--pink-primary) 100%);
    padding: 60px 0 28px;
    color: #ffffff;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 42px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-group h4 {
    font-size: 17px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .metrics-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-perks {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .metrics-layout,
    .benefits-layout,
    .games-container {
        grid-template-columns: 1fr;
    }
    
    .timeline-track::before {
        left: 30px;
    }
    
    .timeline-entry {
        flex-direction: column !important;
    }
    
    .timeline-box {
        width: 100%;
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

