/* ═══════════════════════════════════════════════════
   home-page.css — below-fold funnel sections
   Scoped to .hk-* classes; does not touch game CSS.
   ═══════════════════════════════════════════════════ */

.hk-section, .hk-book-section, .hk-subscribe-section, .hk-footer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
                 Helvetica Neue, Arial, sans-serif;
}

/* ─── Scroll hint ─────────────────────────────────── */
.hk-scroll-hint {
    text-align: center;
    padding: 0.6rem 0 1.2rem;
    background: #0d0a1a;
    color: rgba(255,255,255,0.28);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    animation: hk-bob 2.4s ease-in-out infinite;
    user-select: none;
}
@keyframes hk-bob {
    0%,100% { transform: translateY(0); opacity:.28; }
    50%      { transform: translateY(5px); opacity:.55; }
}

/* ─── Section shells ──────────────────────────────── */
.hk-section {
    background: #fff;
    padding: 4.5rem 1.5rem;
}
.hk-section-alt  { background: #f7f8fa; }
.hk-section-dark { background: #0d0a1a; color: #e5e7eb; }

.hk-inner {
    max-width: 880px;
    margin: 0 auto;
}

/* ─── Heading block ───────────────────────────────── */
.hk-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e91e63;
    margin-bottom: 0.5rem;
}
.hk-section-dark .hk-eyebrow { color: #f48fb1; }

.hk-h2 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 0.6rem;
}
.hk-section-dark .hk-h2 { color: #f9fafb; }

.hk-lead {
    font-size: 0.97rem;
    color: #6b7280;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 0 2.5rem;
}
.hk-section-dark .hk-lead { color: #9ca3af; }

/* ─── Rule cards ─────────────────────────────────── */
.hk-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 1.2rem;
}

.hk-rule {
    background: #fff;
    border: 1.5px solid #f0f0f5;
    border-radius: 1.25rem;
    padding: 1.4rem 1.2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.hk-rule-icon { font-size: 1.7rem; display: block; margin-bottom: 0.65rem; }
.hk-rule-title { font-size: 0.9rem; font-weight: 700; color: #111827; margin-bottom: 0.3rem; }
.hk-rule-body  { font-size: 0.83rem; color: #6b7280; line-height: 1.55; }

/* ─── Tip cards ──────────────────────────────────── */
.hk-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.hk-tip {
    background: #fff;
    border: 1.5px solid #f0f0f5;
    border-radius: 1.25rem;
    padding: 1.4rem 1.2rem;
    position: relative;
    overflow: hidden;
}

.hk-tip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #ff4081);
}

.hk-tip-level {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e91e63;
    margin-bottom: 0.4rem;
}
.hk-tip-title { font-size: 0.93rem; font-weight: 700; color: #111827; margin-bottom: 0.35rem; }
.hk-tip-body  { font-size: 0.83rem; color: #6b7280; line-height: 1.55; }

.hk-tip-eg {
    margin-top: 0.65rem;
    padding: 0.45rem 0.75rem;
    background: #fce4ec;
    border-radius: 0.45rem;
    font-size: 0.77rem;
    color: #880e4f;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* ─── Tool banner ────────────────────────────────── */
.hk-tool-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, #1a0030, #38006b);
    border-radius: 1.5rem;
    padding: 2rem 2.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hk-tool-banner h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0 0 0.3rem; }
.hk-tool-banner p  { font-size: 0.87rem; color: rgba(255,255,255,0.6); max-width: 380px; line-height: 1.5; margin: 0; }

.hk-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e040fb;
    color: #fff;
    font-weight: 700;
    font-size: 0.87rem;
    padding: 0.7rem 1.4rem;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.13s, transform 0.09s;
}
.hk-tool-btn:hover { background: #d500f9; transform: translateY(-1px); }

/* ─── Facts ──────────────────────────────────────── */
.hk-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hk-fact {
    text-align: center;
    padding: 1.1rem 0.7rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
}

.hk-fact-num   { font-size: 1.9rem; font-weight: 800; color: #e040fb; line-height: 1; margin-bottom: 0.3rem; }
.hk-fact-label { font-size: 0.73rem; color: rgba(255,255,255,0.48); line-height: 1.4; }

/* ─── Book CTA ───────────────────────────────────── */
.hk-book-section {
    background: #fff5f8;
    padding: 4.5rem 1.5rem;
}

.hk-book-inner {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hk-book-text { flex: 1; min-width: 250px; }

.hk-book-pre {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.hk-book-title {
    font-size: clamp(1.45rem, 3vw, 1.95rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.hk-book-desc {
    font-size: 0.94rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 1.4rem;
}

.hk-book-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hk-book-features li {
    font-size: 0.86rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hk-book-features li::before {
    content: '♥';
    color: #e91e63;
    font-size: 0.62rem;
    flex-shrink: 0;
}

.hk-book-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #e91e63;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.8rem 1.85rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(233,30,99,0.32);
    transition: background 0.13s, transform 0.09s;
}
.hk-book-buy:hover { background: #c2185b; transform: translateY(-1px); }

.hk-book-visual {
    flex-shrink: 0;
    width: 150px;
    height: 190px;
    background: linear-gradient(148deg, #880e4f 0%, #e91e63 55%, #ff80ab 100%);
    border-radius: 0.65rem 0.15rem 0.65rem 0.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: 0 16px 36px rgba(233,30,99,0.2), 0 2px 8px rgba(0,0,0,0.1);
}

.hk-book-visual-heart  { font-size: 2.75rem; line-height: 1; }
.hk-book-visual-title  {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    text-align: center;
    padding: 0 0.6rem;
}

@media (max-width: 580px) {
    .hk-book-inner { flex-direction: column-reverse; gap: 1.5rem; }
    .hk-book-visual { width: 100%; height: 110px; flex-direction: row; gap: 1rem; }
    .hk-tool-banner { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
}

/* ─── Subscribe section ──────────────────────────── */
.hk-subscribe-section {
    background: #f7f8fa;
    padding: 4rem 1.5rem;
}

/* ─── Footer ─────────────────────────────────────── */
.hk-footer {
    background: #0d0a1a;
    padding: 2rem 1.5rem;
    text-align: center;
}

.hk-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.hk-footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.77rem;
    transition: color 0.13s;
}
.hk-footer a:hover { color: #e91e63; }

.hk-footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
