/* ============ HEADER ============ */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background-color: #ffffff; border-bottom: 1px solid #e5e5e5; transition: box-shadow 0.3s ease; }
.site-header::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #DC143C 50%, #ffffff 50%); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }
.site-header .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1280px; margin: 0 auto; }
.site-header .logo a { display: inline-flex; align-items: center; min-height: 44px; }
.site-header .logo a:hover { opacity: 0.8; }
.site-header .logo .logo-img { height: 36px; width: auto; }
@media (min-width: 768px) {
    .site-header .logo .logo-img { height: 42px; }
}
.site-header .nav-links { display: none; gap: 8px; align-items: center; }
.site-header .nav-links a { font-family: 'Barlow', sans-serif; color: #4a4a4a; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 8px 14px; border-radius: 6px; transition: all 0.2s ease; }
.site-header .nav-links a:hover { color: #DC143C; background-color: rgba(220, 20, 60, 0.06); }
.site-header .nav-links .nav-active { color: #DC143C; background-color: rgba(220, 20, 60, 0.08); font-weight: 700; }
.site-header .mobile-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px 4px; z-index: 101; }
.site-header .mobile-toggle .bar { width: 24px; height: 2px; background-color: #1a1a1a; border-radius: 2px; transition: all 0.3s ease; }
.site-header .mobile-toggle.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-header .mobile-toggle.open .bar:nth-child(2) { opacity: 0; }
.site-header .mobile-toggle.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.site-header .mobile-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #ffffff; border-bottom: 2px solid #DC143C; padding: 8px 24px 20px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.site-header .mobile-menu.open { display: block; }
.site-header .mobile-menu a { display: block; padding: 12px 0; font-family: 'Barlow', sans-serif; color: #4a4a4a; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid #f0f0f0; }
.site-header .mobile-menu a:hover { color: #DC143C; }
@media (min-width: 768px) {
    .site-header .nav-links { display: flex; }
    .site-header .mobile-toggle { display: none; }
}

/* ============ HERO ============ */
.hero { position: relative; padding: 120px 24px 80px; min-height: 75vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 40%, #DC143C 100%); }
.hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 70% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: "FUTSAL"; position: absolute; bottom: -30px; right: -10px; font-family: 'Bebas Neue', sans-serif; font-size: 180px; letter-spacing: 16px; color: rgba(255, 255, 255, 0.04); pointer-events: none; white-space: nowrap; line-height: 1; }
.hero .hero-court-lines { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 350px; height: 230px; border: 1px solid rgba(255, 255, 255, 0.06); pointer-events: none; border-radius: 4px; }
.hero .hero-court-lines::before { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background-color: rgba(255, 255, 255, 0.06); }
.hero .hero-court-lines::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 50%; }
.hero .hero-content { position: relative; z-index: 2; max-width: 1280px; text-align: left; }
.hero .hero-tag { display: inline-block; font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #ffffff; margin-bottom: 20px; padding: 6px 16px; background-color: #DC143C; border-radius: 4px; }
.hero .hero-heading { font-size: 48px; color: #ffffff; margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase; }
.hero .hero-heading .heading-accent { color: #ffffff; position: relative; }
.hero .hero-heading .heading-accent::after { content: ""; position: absolute; bottom: 2px; left: 0; width: 100%; height: 4px; background-color: #DC143C; border-radius: 2px; }
.hero .hero-description { font-size: 17px; color: rgba(255, 255, 255, 0.8); max-width: 720px; line-height: 1.7; margin-bottom: 32px; font-weight: 400; }
.hero .hero-cta { display: inline-block; padding: 14px 36px; background-color: #DC143C; color: #ffffff; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: none; border-radius: 8px; transition: all 0.2s ease; }
.hero .hero-cta:hover { background-color: #b01030; color: #ffffff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(220, 20, 60, 0.3); }
.hero .hero-cta::before { display: none; }
@media (min-width: 768px) {
    .hero { padding: 160px 48px 100px; }
    .hero .hero-heading { font-size: 72px; letter-spacing: 3px; }
    .hero .hero-description { font-size: 18px; }
    .hero .hero-court-lines { width: 500px; height: 340px; }
    .hero::after { font-size: 260px; }
}
@media (min-width: 1024px) {
    .hero .hero-heading { font-size: 88px; }
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs { padding: 12px 24px; padding-top: 72px; background-color: #f5f5f5; border-bottom: 1px solid #e8e8e8; }
.breadcrumbs .breadcrumbs-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs .breadcrumbs-inner a { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 500; color: #888888; text-decoration: none; transition: color 0.2s ease; }
.breadcrumbs .breadcrumbs-inner a:hover { color: #DC143C; }
.breadcrumbs .breadcrumbs-inner .breadcrumb-sep { font-size: 11px; color: #cccccc; }
.breadcrumbs .breadcrumbs-inner .breadcrumb-current { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600; color: #1a1a1a; }
/* Breadcrumbs on dark hero pages — overlay style */
.breadcrumbs-dark { background-color: transparent; border-bottom: none; position: absolute; top: 68px; left: 0; width: 100%; z-index: 10; padding: 12px 24px; }
.breadcrumbs-dark .breadcrumbs-inner a { color: rgba(255, 255, 255, 0.5); }
.breadcrumbs-dark .breadcrumbs-inner a:hover { color: #ffffff; }
.breadcrumbs-dark .breadcrumbs-inner .breadcrumb-sep { color: rgba(255, 255, 255, 0.3); }
.breadcrumbs-dark .breadcrumbs-inner .breadcrumb-current { color: rgba(255, 255, 255, 0.8); }
@media (min-width: 768px) {
    .breadcrumbs { padding: 12px 48px; }
    .breadcrumbs-dark { padding: 12px 48px; top: 72px; }
}

/* ============ WELCOME SECTION ============ */
.welcome-section { padding: 64px 24px; background-color: #ffffff; position: relative; }
.welcome-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background-color: #e5e5e5; }
.welcome-section .welcome-inner { max-width: 960px; margin: 0 auto; }
.welcome-section .welcome-heading { font-size: 40px; color: #1a1a1a; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; }
.welcome-section .welcome-content { line-height: 1.8; font-size: 16px; color: #4a4a4a; font-weight: 400; }
.welcome-section .welcome-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: #1a1a1a; margin-top: 32px; margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; padding-left: 16px; position: relative; }
.welcome-section .welcome-content h3::before { content: ""; position: absolute; left: 0; top: 2px; width: 4px; height: 100%; background-color: #DC143C; border-radius: 2px; }
.welcome-section .welcome-content p { margin-bottom: 1.2em; }
.welcome-section .welcome-content strong { color: #1a1a1a; font-weight: 700; }
.welcome-section .welcome-content a { color: #DC143C; border-bottom: 1px solid rgba(220, 20, 60, 0.3); padding-bottom: 1px; }
.welcome-section .welcome-content a:hover { color: #a01030; border-color: #a01030; }
.welcome-section .welcome-content ul { margin-bottom: 1.4em; padding-left: 0; }
.welcome-section .welcome-content ul li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #4a4a4a; }
.welcome-section .welcome-content ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background-color: #DC143C; border-radius: 50%; }
@media (min-width: 768px) {
    .welcome-section { padding: 80px 48px; }
    .welcome-section .welcome-heading { font-size: 52px; }
    .welcome-section .welcome-content { font-size: 17px; }
}

/* ============ POSTS GRID ============ */
.posts-section { padding: 64px 24px 80px; background-color: #f5f5f5; position: relative; }
.posts-section .section-label, .posts-section .section-heading, .posts-section .posts-grid { max-width: 1280px; margin-left: auto; margin-right: auto; }
.posts-section .section-label { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #DC143C; margin-bottom: 8px; }
.posts-section .section-heading { font-size: 40px; color: #1a1a1a; margin-bottom: 36px; letter-spacing: 1px; text-transform: uppercase; }
.posts-section .posts-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.posts-section .post-card { background-color: #ffffff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 28px; position: relative; transition: all 0.25s ease; overflow: hidden; }
.posts-section .post-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background-color: transparent; transition: background-color 0.25s ease; border-radius: 12px 12px 0 0; }
.posts-section .post-card:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); transform: translateY(-2px); border-color: #d0d0d0; }
.posts-section .post-card:hover::before { background-color: #DC143C; }
.posts-section .post-card .card-tag { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #ffffff; background-color: #DC143C; padding: 4px 10px; border-radius: 4px; margin-bottom: 14px; display: inline-block; }
.posts-section .post-card .card-title { font-size: 24px; letter-spacing: 1px; margin-bottom: 10px; text-transform: uppercase; }
.posts-section .post-card .card-title a { color: #1a1a1a; transition: color 0.2s ease; }
.posts-section .post-card .card-title a:hover { color: #DC143C; }
.posts-section .post-card .card-excerpt { font-size: 14px; color: #666666; line-height: 1.6; margin-bottom: 16px; font-weight: 400; }
.posts-section .post-card .card-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; font-family: 'Barlow', sans-serif; color: #999999; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500; }
.posts-section .post-card .card-meta .meta-divider { width: 4px; height: 4px; background-color: #cccccc; border-radius: 50%; }
.posts-section .post-card .card-body { /* reset */ }
@media (min-width: 768px) {
    .posts-section { padding: 80px 48px 100px; }
    .posts-section .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .posts-section .section-heading { font-size: 52px; }
}
@media (min-width: 1024px) {
    .posts-section .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ ARTICLE PAGE ============ */
.article-light-bg { background-color: #ffffff; }
.article-page { padding: 32px 24px 60px; max-width: 960px; margin: 0 auto; }
.article-page .back-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600; color: #999999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; transition: color 0.2s ease; }
.article-page .back-link:hover { color: #DC143C; }
.article-page .back-link .back-arrow { width: 16px; height: 16px; }
.article-page .article-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid #e5e5e5; position: relative; }
.article-page .article-header::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 80px; height: 3px; background-color: #DC143C; border-radius: 2px; }
.article-page .article-header .article-tag { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #ffffff; background-color: #DC143C; padding: 4px 12px; border-radius: 4px; margin-bottom: 16px; display: inline-block; }
.article-page .article-header .article-title { font-size: 36px; color: #1a1a1a; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.article-page .article-header .article-meta { font-family: 'Barlow', sans-serif; font-size: 13px; color: #999999; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.article-page .article-header .article-meta .meta-divider { width: 4px; height: 4px; background-color: #cccccc; border-radius: 50%; }
.article-page .article-body { line-height: 1.8; font-size: 16px; color: #3a3a3a; font-weight: 400; }
.article-page .article-body h2 { font-size: 28px; color: #1a1a1a; margin-top: 40px; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; position: relative; padding-left: 18px; }
.article-page .article-body h2::before { content: ""; position: absolute; left: 0; top: 4px; width: 4px; height: 100%; background-color: #DC143C; border-radius: 2px; }
.article-page .article-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: #1a1a1a; margin-top: 28px; margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; }
.article-page .article-body p { margin-bottom: 1.2em; }
.article-page .article-body a { color: #DC143C; border-bottom: 1px solid rgba(220, 20, 60, 0.3); padding-bottom: 1px; transition: all 0.2s ease; }
.article-page .article-body a:hover { color: #a01030; border-color: #a01030; }
.article-page .article-body ul { margin-bottom: 1.4em; padding-left: 0; }
.article-page .article-body ul li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #3a3a3a; }
.article-page .article-body ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background-color: #DC143C; border-radius: 50%; }
.article-page .article-body ol { margin-bottom: 1.4em; padding-left: 0; counter-reset: item; list-style: none; }
.article-page .article-body ol li { position: relative; padding-left: 36px; margin-bottom: 10px; color: #3a3a3a; counter-increment: item; }
.article-page .article-body ol li::before { content: counter(item); position: absolute; left: 0; top: -1px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #DC143C; line-height: 1.2; }
.article-page .article-body strong { color: #1a1a1a; font-weight: 700; }
.article-page .article-body .video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 32px 0; border-radius: 12px; background-color: #f0f0f0; }
.article-page .article-body .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: 12px; }
.article-page .article-body blockquote { margin: 28px 0; padding: 20px 24px; background-color: #fef5f5; border-left: 4px solid #DC143C; border-radius: 0 8px 8px 0; font-style: italic; color: #4a4a4a; }
/* Table of Contents */
.article-page .article-body .toc { margin: 28px 0; padding: 24px; background-color: #f9f9f9; border: 1px solid #e5e5e5; border-radius: 12px; border-left: 4px solid #DC143C; }
.article-page .article-body .toc h3 { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #DC143C; margin-top: 0; margin-bottom: 16px; }
.article-page .article-body .toc ol { padding-left: 0; margin-bottom: 0; counter-reset: toc-item; }
.article-page .article-body .toc ol li { padding-left: 28px; margin-bottom: 8px; font-size: 15px; }
.article-page .article-body .toc ol li::before { font-size: 16px; }
.article-page .article-body .toc ol li a { color: #4a4a4a; border-bottom: none; }
.article-page .article-body .toc ol li a:hover { color: #DC143C; }
@media (min-width: 768px) {
    .article-page { padding: 40px 48px 80px; }
    .article-page .article-header .article-title { font-size: 48px; letter-spacing: 2px; }
    .article-page .article-body { font-size: 17px; }
    .article-page .article-body h2 { font-size: 34px; }
}

/* ============ FOOTER ============ */
.site-footer { background-color: #1a1a1a; padding: 48px 24px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #DC143C 50%, #ffffff 50%); }
.site-footer .footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.site-footer .footer-logo .footer-logo-img { height: 32px; width: auto; }
.site-footer .footer-text { font-size: 13px; color: #888888; font-family: 'Barlow', sans-serif; letter-spacing: 0.5px; }
.site-footer .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer .footer-links a { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600; color: #aaaaaa; text-transform: uppercase; letter-spacing: 1px; }
.site-footer .footer-links a:hover { color: #ffffff; }
@media (min-width: 768px) {
    .site-footer { padding: 56px 48px; }
    .site-footer .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============ ARTICLE NAV (next articles) ============ */
.article-nav { margin-top: 48px; padding-top: 40px; border-top: 1px solid #e5e5e5; }
.article-nav .article-nav-label { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #DC143C; margin-bottom: 20px; }
.article-nav .article-nav-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.article-nav .article-nav-card { display: block; padding: 20px; background-color: #f9f9f9; border: 1px solid #e8e8e8; border-radius: 10px; transition: all 0.2s ease; }
.article-nav .article-nav-card:hover { background-color: #ffffff; border-color: #d0d0d0; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); transform: translateY(-1px); }
.article-nav .article-nav-card .nav-card-tag { font-family: 'Barlow', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #DC143C; margin-bottom: 6px; display: block; }
.article-nav .article-nav-card .nav-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #1a1a1a; letter-spacing: 1px; text-transform: uppercase; line-height: 1.2; }
@media (min-width: 768px) {
    .article-nav .article-nav-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }
.fade-in-delay-5 { transition-delay: 0.4s; }
