/* =============================================
   DailyTipsFinder - Main Stylesheet
   Font: Sora (headings) + DM Sans (body)
   Theme: Deep Green & Gold - Editorial Sports
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

:root {
    --green-dark: #0a2e1a;
    --green-mid: #1a5c35;
    --green-light: #2d8a52;
    --green-accent: #3db76c;
    --gold: #f0b429;
    --gold-light: #f9d976;
    --white: #ffffff;
    --off-white: #f7f9f7;
    --text-dark: #111a14;
    --text-muted: #6b7c6f;
    --border: #dce8e0;
    --card-bg: #ffffff;
    --sidebar-bg: #f4f8f5;
    --footer-bg: #071c0f;
    --red: #e63946;
    --blue: #1d6fa4;
    --yellow-light: #fffde7;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 4px 20px rgba(10,46,26,0.10);
    --shadow-hover: 0 8px 32px rgba(10,46,26,0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== NAVBAR ===== */
.dtf-navbar {
    background: var(--green-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1;
}

.brand-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(240,180,41,0.15);
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    background: var(--green-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); background: rgba(240,180,41,0.08); }

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #1e7a42 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(240,180,41,0.15);
    border: 1px solid rgba(240,180,41,0.4);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero h1 span { color: var(--gold); }

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,180,41,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-green {
    background: var(--green-light);
    color: white;
}

.btn-green:hover {
    background: var(--green-accent);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    letter-spacing: 1px;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-mini-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 18px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-mini-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-2px);
}

.mini-card-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.mini-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.mini-card-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ===== TICKER ===== */
.ticker-bar {
    background: var(--gold);
    padding: 8px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.ticker-label {
    background: var(--green-dark);
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    padding-left: 30px;
}

@keyframes ticker {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* ===== MAIN LAYOUT ===== */
.site-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    padding: 40px 0;
}

.main-content { min-width: 0; }

/* ===== SECTIONS ===== */
.section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 1.4rem;
    background: var(--gold);
    border-radius: 2px;
    display: inline-block;
}

.section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid var(--green-mid);
    border-radius: 50px;
    transition: var(--transition);
}

.section-link:hover {
    background: var(--green-mid);
    color: white;
}

/* ===== MATCH CARDS ===== */
.matches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.match-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.match-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.match-card.draw {
    border-left: 4px solid var(--green-accent);
    background: #f0fdf4;
}

.match-card.no-score-draw {
    border-left: 4px solid #00bcd4;
    background: #e0f7fa;
}

.match-card.no-draw {
    border-left: 4px solid var(--red);
    background: #fff5f5;
}

.match-card.live-match {
    border-left: 4px solid var(--gold);
    background: #fffde7;
    animation: pulse-border 2s infinite;
}

.match-card.postponed {
    border-left: 4px solid #9e9e9e;
    opacity: 0.75;
}

@keyframes pulse-border {
    0%, 100% { border-left-color: var(--gold); }
    50% { border-left-color: #ff9800; }
}

.match-sn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 22px;
    height: 22px;
    background: var(--green-dark);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.team-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.team-logo { width: 28px; height: 28px; object-fit: contain; }

.team-name {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.2;
}

.score-col { text-align: center; }

.score-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--green-dark);
    letter-spacing: 2px;
}

.score-sub {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
}

.match-status-badge {
    text-align: center;
    margin-top: 6px;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-live { background: #fff3cd; color: #856404; }
.badge-finished { background: #d1e7dd; color: #155724; }
.badge-upcoming { background: #cfe2ff; color: #084298; }
.badge-postponed { background: #f8d7da; color: #842029; }

/* ===== FEATURED / RESULT CARDS ===== */
.result-summary {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: white;
    margin-bottom: 32px;
}

.result-summary h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.summary-item {
    text-align: center;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 14px 10px;
}

.summary-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 1px;
    display: block;
}

.summary-type {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== BLOG GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
}

.blog-card-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-category {
    display: inline-block;
    background: rgba(61,183,108,0.12);
    color: var(--green-mid);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.blog-card-title a:hover { color: var(--green-mid); }

.blog-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--green-dark);
    gap: 8px;
}

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 84px; height: fit-content; }

.sidebar-widget {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.widget-header {
    background: var(--green-dark);
    color: white;
    padding: 14px 18px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-body {
    padding: 16px 18px;
}

.sidebar-link-list {
    list-style: none;
    padding: 0;
}

.sidebar-link-list li {
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
}

.sidebar-link-list li:last-child { border-bottom: none; }

.sidebar-link-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.sidebar-link-list a::before {
    content: '›';
    color: var(--green-accent);
    font-size: 18px;
    font-weight: 700;
}

.sidebar-link-list a:hover { color: var(--green-mid); padding-left: 6px; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.page-item {
    display: inline-flex;
}

.page-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    background: white;
}

.page-link:hover,
.page-link.active {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: white;
}

/* ===== WEEK PAGINATION ===== */
.week-pagination {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
}

.week-pagination h5 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    font-size: 1rem;
}

.week-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.week-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.week-link-item:hover,
.week-link-item.current-week {
    border-color: var(--green-mid);
    background: #f0fdf4;
    color: var(--green-dark);
}

.week-link-item.current-week {
    font-weight: 700;
}

.week-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green-accent);
}

.week-link-item:nth-child(2) .week-dot { background: #3b82f6; }
.week-link-item:nth-child(3) .week-dot { background: #f59e0b; }
.week-link-item:nth-child(4) .week-dot { background: #ef4444; }
.week-link-item:nth-child(5) .week-dot { background: #8b5cf6; }
.week-link-item:nth-child(6) .week-dot { background: #06b6d4; }

/* ===== FEATURE BOXES (homepage) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-box {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green-accent);
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}

.feature-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.75);
    padding: 56px 20px 0;
    margin-top: 60px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-brand-logo span { color: var(--gold); }

.footer-brand-img {
    width: 36px; height: 36px; border-radius: 8px; object-fit: cover;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(240,180,41,0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ===== BANNER ADS ===== */
.banner-ads {
    background: var(--green-dark);
    padding: 6px 0;
    text-align: center;
}

.banner-ads img {
    max-width: 100%;
    max-height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    padding: 48px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-accent), var(--gold));
}

.page-header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

/* ===== FORMS ===== */
.dtf-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    background: white;
    outline: none;
}

.form-control:focus {
    border-color: var(--green-accent);
    box-shadow: 0 0 0 3px rgba(61,183,108,0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* ===== CONTACT INFO ===== */
.contact-info-card {
    background: var(--green-dark);
    color: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
}

.contact-info-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(240,180,41,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item-val {
    font-size: 15px;
    color: white;
    font-weight: 500;
}

.contact-item-val a {
    color: var(--gold);
    text-decoration: none;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.about-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.why-item {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 3px solid var(--gold);
}

.why-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.why-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== PRIVACY ===== */
.policy-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.policy-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 28px 0 12px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.policy-content h2:first-child {
    margin-top: 0; padding-top: 0; border-top: none;
}

.policy-content p, .policy-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-content ul { padding-left: 20px; }

/* ===== SINGLE POST ===== */
.post-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.post-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.post-featured-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.post-body {
    line-height: 1.85;
    color: var(--text-dark);
    font-size: 16px;
}

.post-body h2, .post-body h3 {
    font-family: 'Sora', sans-serif;
    color: var(--green-dark);
    margin: 28px 0 12px;
}

.post-body p { margin-bottom: 18px; }

/* ===== RESULT PAGE ===== */
.week-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.week-form-card h5 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.1rem;
}

.week-form-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.select-week {
    flex: 1;
    min-width: 220px;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: var(--transition);
    background: white;
}

.select-week:focus {
    border-color: var(--green-accent);
    box-shadow: 0 0 0 3px rgba(61,183,108,0.15);
}

.result-stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.result-stats-table th {
    background: var(--green-dark);
    color: white;
    padding: 10px 14px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.result-stats-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.result-stats-table tr:last-child td { border-bottom: none; }
.result-stats-table tr:nth-child(even) td { background: var(--off-white); }

/* ===== ALERTS ===== */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success { background: #d1e7dd; color: #155724; border-left: 4px solid #198754; }
.alert-error { background: #f8d7da; color: #842029; border-left: 4px solid #dc3545; }
.alert-info { background: #cfe2ff; color: #084298; border-left: 4px solid #0d6efd; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card-stack { display: none; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .blog-grid { grid-template-columns: 1fr; }
    .matches-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero h1 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .summary-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .hero-btns { flex-direction: column; }
    .week-form-row { flex-direction: column; }
    .select-week { min-width: unset; width: 100%; }
}
