/* Ludo Star Tips — fast light theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

:root {
    --primary: #d97706;
    --primary-dark: #b45309;
    --primary-light: #fbbf24;
    --purple: #7c3aed;
    --secondary: #1e293b;
    --text: #1f2937;
    --muted: #6b7280;
    --bg: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 28px rgba(0,0,0,.1);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--secondary); line-height: 1.3; }
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* NAV */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm); border-bottom: 1px solid #f1f5f9;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 68px; gap: 16px; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--purple); display: flex; align-items: center; gap: 6px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--muted); position: relative; }
.nav-link:hover { color: var(--primary); }

/* HERO */
.hero {
    padding: 120px 0 64px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 40%, #fff 100%);
    position: relative; overflow: hidden;
}
.hero::after {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.hero-badge {
    display: inline-block; background: #fff; color: #92400e;
    padding: .35rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
    border: 1px solid #fde68a; margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.75rem; }
.hero-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; padding: .7rem 1.4rem;
    font-weight: 600; font-size: .92rem; border-radius: var(--radius); transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(217,119,6,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: #fff; border: 1px solid #e5e7eb; color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* SECTIONS */
.section { padding: 4rem 0; }
.section-white { background: var(--white); }
.section-title { font-size: 2rem; text-align: center; margin-bottom: .5rem; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }

/* GUIDE CARDS */
.guide-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem;
}
.guide-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm); transition: all .25s;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #fde68a; }
.guide-card img { width: 100%; height: 140px; object-fit: cover; }
.guide-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.guide-card-body .icon { font-size: 1.4rem; margin-bottom: .4rem; }
.guide-card-body h3 { font-size: 1rem; margin-bottom: .35rem; }
.guide-card-body p { font-size: .85rem; color: var(--muted); }

/* ARTICLE */
.page-hero {
    padding: 100px 0 32px;
    background: linear-gradient(180deg, #fffbeb, var(--bg));
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: .5rem; }
.page-hero .lead { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.breadcrumb { padding: 14px 0; font-size: .85rem; color: var(--muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

.article-wrap { padding: 2rem 0 3.5rem; }
.article {
    background: var(--white); border-radius: var(--radius); padding: 2rem 2.25rem;
    border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm);
}
.article-hero { margin: 0 0 1.75rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.article-hero img { width: 100%; max-height: 360px; object-fit: cover; }
.article h2 { font-size: 1.35rem; margin: 1.75rem 0 .75rem; color: var(--primary-dark); }
.article h3 { font-size: 1.1rem; margin: 1.25rem 0 .5rem; }
.article p, .article li { color: #374151; margin-bottom: 1rem; font-size: .97rem; }
.article ul, .article ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article a { color: var(--purple); font-weight: 500; }
.article a:hover { color: var(--primary); text-decoration: underline; }
.article img { margin: 1.25rem auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article figure { margin: 1.5rem 0; text-align: center; }
.article figcaption { font-size: .82rem; color: var(--muted); margin-top: .5rem; }

.info-box {
    background: #fffbeb; border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem; margin: 1.5rem 0; border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .93rem; color: #78350f;
}

.ad-slot { padding: 1.25rem 0; text-align: center; }
.ad-slot-inline { margin: 1.5rem 0; padding: .75rem 0; background: #fafafa; border-radius: var(--radius); }

/* FAQ */
.faq-section { padding: 4rem 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid #f1f5f9; border-radius: var(--radius); margin-bottom: .75rem;
    padding: 1.1rem 1.25rem; background: var(--bg);
}
.faq-item h3 { font-size: 1rem; margin-bottom: .4rem; }
.faq-item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* RELATED */
.related { padding: 3rem 0; }
.related h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .75rem; }
.related-link {
    display: block; background: var(--white); padding: .9rem 1rem;
    border-radius: var(--radius); border: 1px solid #e5e7eb; font-size: .88rem; font-weight: 500;
    transition: all .2s;
}
.related-link:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* CONTACT */
.contact-box { background: var(--bg); padding: 1.5rem; border-radius: var(--radius); margin-top: 1rem; }
.contact-box a { color: var(--purple); font-weight: 600; }

/* FOOTER */
.footer { background: var(--secondary); color: #94a3b8; padding: 2.5rem 0; margin-top: 3rem; font-size: .85rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; margin-bottom: 1rem; }
.footer-links a { color: #cbd5e1; }
.footer-links a:hover { color: var(--primary-light); }
.footer p { text-align: center; }

@media (max-width: 768px) {
    .nav-links { gap: .75rem; font-size: .82rem; }
    .article { padding: 1.25rem 1.1rem; }
    .hero { padding-top: 100px; }
}
