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

:root {
    --rose: #f43f5e;
    --rose-light: #fb7185;
    --rose-dark: #e11d48;
    --pink: #ec4899;
    --violet: #8b5cf6;
    --bg: #fefefe;
    --bg-soft: #fdf2f4;
    --bg-card: #ffffff;
    --text: #1f1f1f;
    --text-light: #6b6b6b;
    --border: #fce7f3;
    --shadow: rgba(244, 63, 94, 0.1);
    --gradient: linear-gradient(135deg, var(--rose) 0%, var(--pink) 50%, var(--violet) 100%);
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Banner */
.top-banner {
    background: var(--gradient);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* Header */
header {
    background: var(--bg-card);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
}

nav a {
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--rose);
    background: var(--bg-soft);
}

nav a.active {
    background: var(--gradient);
    color: #fff;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(244,63,94,0.1) 0%, rgba(236,72,153,0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--rose);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text);
}

.hero h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-img {
    flex: 1;
}

.hero-img img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px var(--shadow), 0 0 0 1px var(--border);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-rose {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 24px var(--shadow);
}

.btn-rose:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 63, 94, 0.25);
}

.btn-outline {
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--rose);
    color: var(--rose);
}

/* Stats */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 50px 0;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item span {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(244,63,94,0.1) 0%, rgba(236,72,153,0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rose);
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.section-desc {
    color: var(--text-light);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

/* Feature Cards - Floating Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(244,63,94,0.1) 0%, rgba(236,72,153,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-box .icon img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.feature-box h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Split */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-row.reverse {
    direction: rtl;
}

.content-row.reverse > * {
    direction: ltr;
}

.content-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.content-info p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 15px;
}

.check-items {
    list-style: none;
    margin: 22px 0;
}

.check-items li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.check-items li:last-child { border-bottom: none; }

.check-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: bold;
    font-size: 16px;
}

.content-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
    border: 1px solid var(--border);
}

/* Steps */
.steps-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

.step-box .num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.step-box img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    margin: 10px 0 14px;
}

.step-box h5 {
    font-size: 14px;
    margin-bottom: 6px;
}

.step-box p {
    font-size: 12px;
    color: var(--text-light);
}

/* Game Cards */
.games-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px var(--shadow);
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.game-card-body {
    padding: 22px;
}

.game-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.game-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.game-tag {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(244,63,94,0.1) 0%, rgba(236,72,153,0.1) 100%);
    color: var(--rose);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Review Cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 12px 30px var(--shadow);
}

.review-card p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.7;
}

.review-card .author {
    font-size: 13px;
    font-weight: 600;
    color: var(--rose);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 14px;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 24px var(--shadow);
}

.faq-item h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 17px;
}

/* CTA */
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Footer */
footer {
    background: var(--bg-soft);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid var(--border);
}

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

.footer-col h4 {
    font-size: 15px;
    color: var(--rose);
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
    font-size: 13px;
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--rose); }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-flex, .content-row { flex-direction: column; grid-template-columns: 1fr; text-align: center; }
    .content-row.reverse { direction: ltr; }
    .features-grid, .games-flex { grid-template-columns: repeat(2, 1fr); }
    .steps-flex { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 34px; }
    .features-grid, .games-flex, .reviews-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { padding: 40px 24px; }
}
