/*
Theme Name: TheTVApp
Version: 1.0.5
Description: TheTVApp look for PageDrop. Light UI on white, dark navy header and footer, blue accent. Two-tone "TheTVApp" wordmark. Upload via PageDrop > Theme Switcher.
*/

/* ===================================================================
   TheTVApp Theme for PageDrop
   File: thetvapp-theme-1_0_5.css
   Version: v1.0.5
   Target: PageDrop v3.0.8
   Upload via: PageDrop > Theme Switcher > Upload New Theme

   Notes:
   - Loads AFTER the PageDrop style.css and overrides it.
   - Light/white UI with a dark navy header and footer.
   - No scroll smoothing rule (PageDrop's CSS scanner rejects it).
   - No @import, no expressions, no external fonts.
   =================================================================== */


/* ===================================================================
   1. DESIGN TOKENS
   These reuse PageDrop's own variable names, so overriding them here
   flips the entire theme from dark to light automatically.
   =================================================================== */
:root {
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-elevated: #f1f5f9;
    --bg-input: #ffffff;
    --bg-accent: #f0f7ff;

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-heading: #0f172a;

    /* Accent */
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: rgba(37, 99, 235, 0.08);
    --accent-glow: rgba(37, 99, 235, 0.12);
    --accent-soft: rgba(37, 99, 235, 0.08);

    /* Header / footer surface */
    --header-bg: #0f172a;
    --header-text: #ffffff;

    /* Status */
    --green: #059669;
    --green-soft: rgba(5, 150, 105, 0.1);
    --orange: #d97706;
    --red: #dc2626;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #2563eb;

    /* Borders */
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Tags */
    --tag-bg: #dbeafe;
    --tag-text: #1e40af;

    /* Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 999px;

    /* Shadows */
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 4px 16px rgba(37, 99, 235, 0.3);

    /* Typography */
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Layout */
    --max-w: 1200px;
    --container-xl: 1200px;
    --transition: 0.2s ease;
}


/* ===================================================================
   2. BASE
   =================================================================== */
html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font);
}

h2 {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.35;
}


/* ===================================================================
   3. SITE HEADER (PageDrop markup, TheTVApp look)
   PageDrop renders: .site-header > .container > .site-logo
                     + .menu-toggle + nav.site-nav-desktop
   =================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--header-bg);
}

.site-header .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--header-text);
    letter-spacing: -0.3px;
}

.site-logo:hover {
    color: var(--header-text);
}

.site-logo img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

/* ---------- Wordmark: "The" white + "TV" accent + "App" white ----------
   PageDrop prints the site name as a single text node, so the real text is
   collapsed to zero and the three coloured parts are rebuilt as pseudo
   elements. This stays pixel-accurate on every font and every device,
   unlike a background-clip gradient whose colour stops shift with the
   system font.
   Requires: Customizer > Show Site Title = ON.
   Size is driven by --wordmark-size so responsive needs one override.  */
.site-logo {
    --wordmark-size: 20px;
    gap: 0;
}

.site-logo img {
    margin-right: 10px;
}

.site-title-text {
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
    color: transparent;
}

.site-title-text::before,
.site-title-text::after,
.site-logo::after {
    font-size: var(--wordmark-size);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1;
    color: var(--header-text);
}

.site-title-text::before {
    content: "The";
}

.site-title-text::after {
    content: "TV";
    color: var(--accent);
}

.site-logo::after {
    content: "App";
}

/* If the site title is turned off there is no wordmark to complete,
   so suppress the trailing part and let the logo image stand alone. */
.site-logo:not(:has(.site-title-text))::after {
    content: none;
}

/* Desktop navigation */
.site-nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav-desktop a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.site-nav-desktop a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.site-nav-desktop .current-menu-item a,
.site-nav-desktop .current_page_item a {
    color: #ffffff;
    background: var(--accent);
    font-weight: 600;
}

/* "More" overflow dropdown */
.site-nav-more-toggle {
    color: rgba(255, 255, 255, 0.75);
}

.site-nav-more-menu {
    background: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
}

.site-nav-desktop ul .site-nav-more-menu li a {
    color: rgba(255, 255, 255, 0.75);
}

.site-nav-desktop ul .site-nav-more-menu li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}


/* ===================================================================
   4. MOBILE MENU (all PageDrop styles)
   =================================================================== */
.menu-toggle .bar {
    background: var(--header-text);
}

.site-nav-mobile {
    background: var(--header-bg);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav-mobile.pd-style-sheet,
.site-nav-mobile.pd-style-overlay {
    background: var(--header-bg);
    border-top-color: rgba(255, 255, 255, 0.12);
}

.site-nav-mobile ul {
    list-style: none;
    margin: 0;
}

.site-nav-mobile a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    display: block;
    transition: all var(--transition);
}

.site-nav-mobile a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.site-nav-mobile .current-menu-item a,
.site-nav-mobile .current_page_item a {
    color: #ffffff;
    background: var(--accent);
    font-weight: 600;
}

.menu-close {
    color: rgba(255, 255, 255, 0.75);
}

.menu-close:hover {
    color: #ffffff;
}

.menu-overlay {
    background: rgba(15, 23, 42, 0.6);
}

/* Chip bar variant */
.site-nav-chips {
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav-chips a {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 500;
}

.site-nav-chips a:hover,
.site-nav-chips .current-menu-item a {
    color: #ffffff;
    background: var(--accent);
}

/* Floating pill variant */
.site-nav-pill {
    background: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav-pill a {
    color: rgba(255, 255, 255, 0.75);
}

.site-nav-pill a:hover,
.site-nav-pill .current-menu-item a {
    color: #ffffff;
}


/* ===================================================================
   5. SITE FOOTER
   Covers BOTH footer modes:
   a) PageDrop's built-in footer  (.footer-content / .footer-text / ul.footer-links)
   b) A custom footer uploaded via PageDrop > Footer
      (.footer-inner / .footer-grid / div.footer-links / .footer-bottom)
   =================================================================== */
.site-footer {
    background: var(--header-bg);
    border-top: 1px solid var(--header-bg);
    padding: 48px 24px 32px;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer .container,
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0;
}

.footer-inner {
    text-align: left;
}

/* ---------- a) built-in footer ---------- */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-text a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-text a:hover {
    color: #ffffff;
}

ul.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.footer-links li {
    margin: 0;
}

ul.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

ul.footer-links a:hover {
    color: #ffffff;
}

/* ---------- b) custom uploaded footer ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px 40px;
    margin-bottom: 40px;
}

.footer-about {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.footer-grid .footer-links:nth-child(2) { grid-column: 2; grid-row: 1; }
.footer-grid .footer-links:nth-child(3) { grid-column: 3; grid-row: 1; }
.footer-grid .footer-links:nth-child(4) { grid-column: 4; grid-row: 1; }
.footer-grid .footer-links:nth-child(5) { grid-column: 2; grid-row: 2; }
.footer-grid .footer-links:nth-child(6) { grid-column: 3; grid-row: 2; }

/* Footer wordmark: real markup here, so the parts are coloured directly */
.footer-about .logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.footer-about .logo:hover {
    color: #ffffff;
}

.footer-about .logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.footer-about .logo-text {
    color: #ffffff;
}

.footer-about .logo-text span {
    color: var(--accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Reset PageDrop's base .footer-links flex rule.
   The built-in footer uses a <ul>, this custom footer uses <div> columns,
   and the base rule is unscoped so it hits both. */
.footer-grid .footer-links {
    display: block;
    flex-wrap: initial;
    justify-content: flex-start;
    gap: 0;
    max-width: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.footer-grid .footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 4px 0;
    white-space: normal;
    /* Declared on the anchor itself: PageDrop's mobile base rule sets
       text-align:center directly on .footer-links a, and an inherited
       value from the parent would lose to it. */
    text-align: left;
    transition: color var(--transition);
}

.footer-grid .footer-links h4 {
    text-align: left;
}

.footer-grid .footer-links a:hover {
    color: #ffffff;
}

/* Social column: icon + label on one line.
   Scoped to .footer-grid so it outranks the block rule for column links. */
.footer-grid .footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    text-align: left;
}

.social-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    display: block;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer-grid .footer-social-links a:hover .social-icon {
    color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


/* ===================================================================
   6. SECTIONS
   =================================================================== */
.section {
    padding: 64px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-alt {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-alt .section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}


/* ===================================================================
   7. HERO
   =================================================================== */
.hero {
    position: relative;
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-desc {
    font-size: clamp(15px, 2.2vw, 17px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.65;
}

.hero-logo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.hero-brand {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.hero-brand span {
    color: var(--accent);
}

.hero-image {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.hero-cover {
    width: 100%;
    height: auto;
    display: block;
}


/* ===================================================================
   8. BADGES
   =================================================================== */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


/* ===================================================================
   9. BUTTONS
   =================================================================== */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--accent);
}

.watch-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.22s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.watch-now-btn:hover {
    background: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.4);
}

.watch-now-btn:active {
    transform: translateY(0);
}


/* ===================================================================
   10. SPORT LIVE BUTTONS (homepage hero)
   =================================================================== */
.sport-buttons-section {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.sport-buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

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

.sport-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sport-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.sport-btn:hover {
    border-color: var(--accent);
    background: var(--bg-accent);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.sport-btn:hover::before {
    opacity: 1;
}

.sport-btn:active {
    transform: translateY(0);
}

.sport-btn .s-icon {
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.sport-btn .s-label {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.sport-btn .s-label .s-hl {
    color: var(--text-primary);
    font-weight: 700;
}

.sport-btn .s-play {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    border: 1.5px solid rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}

.sport-btn .s-play::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent var(--accent);
    margin-left: 2px;
}

.sport-btn .s-play::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    opacity: 0;
    animation: sport-pulse 2s ease-out infinite;
}

.sport-btn:hover .s-play {
    background: rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.45);
    transform: scale(1.1);
}

@keyframes sport-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.7); opacity: 0; }
}

.sport-btn.sport-featured {
    background: linear-gradient(135deg, var(--bg-accent) 0%, #ffffff 100%);
    border-color: rgba(37, 99, 235, 0.25);
}

.sport-btn.sport-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.sport-btn.sport-primary .s-label {
    color: rgba(255, 255, 255, 0.95);
}

.sport-btn.sport-primary .s-label .s-hl {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.sport-btn.sport-primary .s-play {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.sport-btn.sport-primary .s-play::before {
    border-color: transparent transparent transparent #ffffff;
}

.sport-btn.sport-primary .s-play::after {
    border-color: #ffffff;
}

.sport-btn.sport-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #1e40af 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.38);
}

.sport-btn.sport-secondary {
    background: #ffffff;
    border-color: var(--border);
}

.sport-btn.sport-secondary:hover {
    border-color: var(--accent);
    background: var(--bg-accent);
}


/* ===================================================================
   11. FEATURE CARDS
   =================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    background: var(--accent-soft);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}


/* ===================================================================
   12. CHANNEL CATEGORY CARDS
   =================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all var(--transition);
    color: var(--text-primary);
}

.category-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--text-primary);
}

.category-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.category-icon.sports { background: rgba(239, 68, 68, 0.12); }
.category-icon.movies { background: rgba(168, 85, 247, 0.12); }
.category-icon.news { background: rgba(37, 99, 235, 0.12); }
.category-icon.kids { background: rgba(16, 185, 129, 0.12); }
.category-icon.entertainment { background: rgba(245, 158, 11, 0.12); }
.category-icon.music { background: rgba(236, 72, 153, 0.12); }

.category-info h3 {
    font-size: 16px;
    margin-bottom: 2px;
}

.category-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.category-card .arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 18px;
    transition: transform var(--transition);
}

.category-card:hover .arrow {
    transform: translateX(4px);
    color: var(--accent);
}


/* ===================================================================
   13. CHANNEL TAGS
   =================================================================== */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.channel-tag {
    background: var(--tag-bg);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tag-text);
    text-align: center;
    transition: all var(--transition);
}

.channel-tag:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
}


/* ===================================================================
   14. STEPS
   =================================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.step {
    text-align: center;
    counter-increment: step;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}


/* ===================================================================
   15. COMPARISON TABLE
   =================================================================== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 15px;
    background: transparent;
}

.comparison-table thead {
    background: var(--bg-card);
}

.comparison-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr {
    transition: background var(--transition);
}

.comparison-table tbody tr:hover {
    background: var(--bg-card);
}

.comparison-table .check {
    color: var(--green);
    font-weight: 600;
}

.comparison-table .cross {
    color: var(--red);
}

.comparison-table .feat-name {
    color: var(--text-primary);
    font-weight: 500;
}


/* ===================================================================
   16. FAQ (native details/summary, no JavaScript)
   =================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font);
    line-height: 1.4;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: "";
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question .icon {
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] > .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer-inner {
    padding: 0 0 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}


/* ===================================================================
   17. INFO BLOCKS / DEVICE CARDS / CONTENT PAGES
   (used by the inner pages)
   =================================================================== */
.info-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-block p,
.info-block li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.info-block ul {
    padding-left: 20px;
}

.info-block li {
    margin-bottom: 6px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.device-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.device-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.device-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.device-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.page-hero {
    padding: 48px 24px 32px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
}

.page-hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.content-section h3 {
    margin-top: 28px;
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    color: var(--text-secondary);
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}


/* ===================================================================
   18. DISCLAIMER
   =================================================================== */
.disclaimer {
    background: var(--bg-accent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 32px;
}

.disclaimer h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--orange);
}

.disclaimer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.disclaimer-image {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 24px;
}

.disclaimer-image a {
    display: block;
    text-decoration: none;
    transition: opacity var(--transition);
}

.disclaimer-image a:hover {
    opacity: 0.92;
}

.disclaimer-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}


/* ===================================================================
   19. UTILITIES
   =================================================================== */
.text-body {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.text-body:last-child {
    margin-bottom: 0;
}

.text-sub {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.text-sub-lg {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.text-sub-xl {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.text-accent {
    color: var(--accent);
}

.narrow {
    max-width: 800px;
    margin: 0 auto;
}

.narrow-spaced {
    max-width: 800px;
    margin: 0 auto 40px;
}

.overflow-scroll {
    overflow-x: auto;
}

.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.pt-0 { padding-top: 0; }
.text-center { text-align: center; }


/* ===================================================================
   20. RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .footer-about {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .footer-grid .footer-links:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        height: 64px;
        padding: 0 20px;
    }

    .site-logo {
        --wordmark-size: 18px;
        font-size: 18px;
    }

    .site-logo img {
        width: 34px;
        height: 34px;
    }

    .hero {
        padding: 48px 20px 40px;
    }

    .section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer {
        padding: 40px 20px 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    ul.footer-links {
        justify-content: center;
    }

    .footer-grid .footer-links {
        display: block;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .footer-about {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .footer-grid .footer-links:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .disclaimer-image {
        padding: 0 16px;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .sport-grid {
        grid-template-columns: 1fr;
    }

    .sport-btn {
        padding: 12px 14px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .channel-grid {
        grid-template-columns: 1fr 1fr;
    }

    .device-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
}

/* End of thetvapp-theme-1_0_5.css v1.0.5 */
