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

body {
    background: #0f172a; color: #e2e8f0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
}

/* Paddle canvas - fixed ABOVE content so ball is visible over text */
#paddle-canvas {
    position: fixed; inset: 0;
    z-index: 5; pointer-events: none;
}

/* Content wrapper */
.content {
    position: relative; z-index: 1;
    max-width: 700px; margin: 0 auto;
    padding: 40px 24px 120px;
}

/* Paddle zone - interactive area at bottom */
.paddle-zone {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: 80px; z-index: 10;
    cursor: none;
}

/* Back nav */
.breadcrumb {
    display: flex; gap: 8px; align-items: center;
    margin-bottom: 24px; font-size: 0.85rem;
}
.breadcrumb a {
    color: #a78bfa; text-decoration: none;
    font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase;
}
.breadcrumb a:hover { color: #c4b5fd; }
.breadcrumb span { color: #475569; }

/* Play button */
.play-btn {
    display: inline-block; padding: 14px 36px;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff; border: none; border-radius: 10px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer;
    text-decoration: none; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 32px;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}
.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4);
}

h1 {
    font-size: 2rem; color: #f8fafc;
    margin-bottom: 12px; line-height: 1.2;
}

h2 {
    font-size: 1.3rem; color: #38bdf8;
    margin: 28px 0 12px; letter-spacing: 0.5px;
}

p {
    line-height: 1.7; color: #cbd5e1;
    margin-bottom: 16px; font-size: 1rem;
}

ul, ol {
    margin: 0 0 16px 20px; line-height: 1.7;
    color: #cbd5e1;
}

li { margin-bottom: 6px; }

.tip-box {
    background: rgba(56, 189, 248, 0.08);
    border-left: 3px solid #38bdf8;
    padding: 14px 18px; border-radius: 0 8px 8px 0;
    margin: 20px 0; font-size: 0.95rem;
}

.tip-box strong { color: #38bdf8; }

/* Quick facts */
.facts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin: 20px 0;
}

.fact {
    background: #1e293b; border-radius: 8px;
    padding: 12px 14px; text-align: center;
}

.fact-label {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 1px; color: #64748b;
    margin-bottom: 4px;
}

.fact-value {
    font-size: 1.1rem; font-weight: 700; color: #f59e0b;
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid #1e293b;
}

.faq-q {
    width: 100%; background: none; border: none;
    padding: 16px 0; text-align: left; cursor: pointer;
    color: #e2e8f0; font-size: 1rem; font-weight: 600;
    font-family: inherit; display: flex;
    justify-content: space-between; align-items: center;
}

.faq-q:hover { color: #38bdf8; }

.faq-q .arrow {
    transition: transform 0.2s; font-size: 0.8rem; color: #64748b;
}

.faq-q.open .arrow { transform: rotate(180deg); }

.faq-a {
    display: none; padding: 0 0 16px;
    color: #94a3b8; line-height: 1.6;
}

.faq-a.open { display: block; }

/* Related games */
.related {
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid #1e293b;
}

.related h2 { margin-top: 0; }

.related-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.related-link {
    display: block; background: #1e293b;
    border-radius: 8px; padding: 12px;
    text-decoration: none; text-align: center;
    color: #e2e8f0; font-weight: 600;
    font-size: 0.85rem; transition: background 0.15s;
}

.related-link:hover { background: #334155; }

/* Back to games link */
.back-links {
    margin-top: 32px; display: flex;
    gap: 20px; flex-wrap: wrap;
}

.back-link {
    color: #a78bfa; text-decoration: none;
    font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; font-size: 0.85rem;
}

.back-link:hover { color: #c4b5fd; }

/* Ball score display */
.ball-score {
    position: fixed; bottom: 82px; left: 50%;
    transform: translateX(-50%); z-index: 10;
    font-size: 0.75rem; color: #475569;
    letter-spacing: 1px; text-transform: uppercase;
    pointer-events: none;
}
