/* ========== STREAM2WATCH PROFESSIONAL MEDIA PLATFORM 2026 ========== */
/* Enhanced for ESPN/Prime Video quality standards */

:root {
    /* Enhanced Professional Media Colors */
    --primary-blue: #0066ff;
    --primary-dark: #0033cc;
    --accent-red: #ff0033;
    --accent-green: #00cc66;
    --accent-yellow: #ffcc00;
    
    /* Professional Neutral Foundation */
    --bg-primary: #0a0a0f;
    --bg-secondary: #121218;
    --bg-surface: #1a1a24;
    --bg-elevated: #252532;
    --bg-dropdown: #2d2d40;
    --bg-overlay: rgba(0, 0, 0, 0.8);
    
    /* Optimized Text Hierarchy */
    --text-primary: #ffffff;
    --text-secondary: #c8c8d8;
    --text-muted: #8a8a9a;
    --text-accent: var(--primary-blue);
    --text-on-dark: var(--text-primary);
    --text-on-light: #1a1a1a;
    
    /* Professional Gradients */
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    --gradient-surface: linear-gradient(180deg, var(--bg-surface), var(--bg-elevated));
    --gradient-hero: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 100%);
    
    /* Enhanced Borders & Shadows */
    --border-color: rgba(255, 255, 255, 0.12);
    --border-heavy: rgba(255, 255, 255, 0.2);
    --border-light: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    
    /* Enhanced Spacing System */
    --space-unit: 4px;
    --space-xs: calc(var(--space-unit) * 1);   /* 4px */
    --space-sm: calc(var(--space-unit) * 2);   /* 8px */
    --space-md: calc(var(--space-unit) * 4);   /* 16px */
    --space-lg: calc(var(--space-unit) * 6);   /* 24px */
    --space-xl: calc(var(--space-unit) * 8);   /* 32px */
    --space-2xl: calc(var(--space-unit) * 12); /* 48px */
    --space-3xl: calc(var(--space-unit) * 16); /* 64px */
    --space-4xl: calc(var(--space-unit) * 24); /* 96px */
    
    /* Professional Border Radius */
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    
    /* Professional Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-index Layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Professional Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 
                    'Helvetica Neue', Arial, sans-serif;
    --font-mono: ui-monospace, 'Cascadia Code', 'Roboto Mono', monospace;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    --tracking-tight: -0.01em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;

    /* ---- Aliases for header.php / footer.php / game.php / index.php compatibility ---- */
    --bg-color:       #06080a;
    --surface-color:  #12141c;
    --surface-hover:  #1b1f29;
    --bg-elevated:    #1a1d26;
    --bg-card:        #0f1117;
    --primary:        #2563eb;
    --primary-glow:   rgba(37, 99, 235, 0.4);
    --accent:         #3b82f6;
    --accent-green:   #22c55e;
    --live-red:       #ef4444;
    --text-primary:   #f8fafc;
    --text-secondary: #94a3b8;
    --text-tertiary:  #64748b;
    --border-color:   rgba(255, 255, 255, 0.06);
    --safe-bottom:    env(safe-area-inset-bottom, 0px);
    --shadow:         0 10px 15px -3px rgba(0,0,0,0.4);
    --font-primary:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== CSS RESET & BASE STYLES ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    font-size: var(--text-base);
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

/* ========== PROFESSIONAL TYPOGRAPHY SYSTEM ========== */
h1, .h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

h2, .h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

h3, .h3 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
    font-weight: 600;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h4, .h4 {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
    font-weight: 600;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h5, .h5 {
    font-size: clamp(var(--text-base), 2vw, var(--text-xl));
    font-weight: 600;
    line-height: var(--leading-normal);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

h6, .h6 {
    font-size: var(--text-base);
    font-weight: 600;
    line-height: var(--leading-normal);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 65ch;
}

.lead {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.small {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--text-muted);
}

.caption {
    font-size: var(--text-xs);
    line-height: var(--leading-normal);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

/* ========== PROFESSIONAL LAYOUT SYSTEM ========== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0;
    }
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1600px;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
}

/* Flex System */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Section Spacing */
.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-xl) 0;
}

.section-lg {
    padding: var(--space-4xl) 0;
}

/* ========== PROFESSIONAL HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: var(--z-fixed);
    height: 72px;
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform var(--transition-base);
}

.site-logo:hover img {
    transform: scale(1.05);
}

/* ========== PROFESSIONAL NAVIGATION ========== */
.main-nav {
    display: flex;
    gap: var(--space-xs);
    margin-left: auto;
}

.nav-link {
    position: relative;
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(0, 102, 255, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: var(--space-lg);
    right: var(--space-lg);
    height: 2px;
    background: var(--gradient-blue);
    border-radius: 1px;
    animation: slideIn var(--transition-base) forwards;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: calc(100% - var(--space-lg) * 2); }
}

/* ========== PROFESSIONAL DROPDOWNS ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: var(--space-sm) var(--space-lg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--bg-dropdown);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    min-width: 240px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-dropdown);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: var(--text-sm);
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-blue);
    padding-left: var(--space-lg);
    transform: translateX(4px);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: var(--z-modal);
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
}

.mobile-menu-btn[aria-expanded="true"] {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary-blue);
}

.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: var(--z-modal);
    padding: var(--space-xl);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    border-top: 1px solid var(--border-color);
    display: block !important;
    overscroll-behavior: contain;
}

.mobile-nav.active {
    transform: translateX(0);
}

@supports (-webkit-touch-callout: none) {
    .mobile-nav {
        height: -webkit-fill-available;
        height: fill-available;
    }
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--space-xl);
}

.mobile-nav-close {
    width: 48px;
    height: 48px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-nav-link {
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--text-lg);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(4px);
}

.mobile-dropdown {
    margin-bottom: var(--space-sm);
}

.mobile-dropdown-toggle {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-lg);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
}

.mobile-dropdown-menu {
    padding: var(--space-md) 0;
    border-left: 2px solid var(--primary-blue);
    margin-left: var(--space-lg);
    margin-top: var(--space-sm);
}

.mobile-dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    min-height: 48px;
    display: flex;
    align-items: center;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-blue);
    padding-left: var(--space-xl);
    background: rgba(0, 102, 255, 0.05);
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 160px 0 var(--space-3xl);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    text-align: center;
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    line-height: var(--leading-tight);
    margin: 0 auto var(--space-md);
    color: var(--text-primary);
    background: transparent;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}


.hero-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== PROFESSIONAL SEARCH ========== */
.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    padding-right: 68px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    height: 56px;
}

.search-box input:hover {
    border-color: var(--border-heavy);
    background: var(--bg-elevated);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1), var(--shadow-md);
    background: var(--bg-elevated);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-md);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* ========== QUICK LINKS ========== */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quick-link {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-link:hover {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ========== CATEGORY SECTIONS ========== */
.category-section {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.category-section:last-of-type {
    border-bottom: none;
}

.category-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.category-title svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* ========== PROFESSIONAL EVENTS GRID ========== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    width: 100%;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ========== PROFESSIONAL EVENT CARD ========== */
.event-button {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    /* THE FIX: Change from block to flex */
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards in a row are the same height */
    min-height: 200px; /* Adjust this to your preferred mobile height */
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.event-button:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    background: var(--bg-elevated);
}

.event-button:hover::before {
    opacity: 1;
}

.event-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.card-header {
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    min-height: 56px;
}

.card-body {
    padding: var(--space-xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    align-items: center;
    min-height: 140px;
}

/* ========== PROFESSIONAL TEAM STYLES ========== */
.team {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-logo {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-base);
    border: 2px solid;
    transition: border-color var(--transition-base);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.team-name {
    font-size: var(--text-sm);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.2;
    max-width: 100%;
    /* THE FIX: Allow 2 lines of text then truncate */
    white-space: normal; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

/* ========== PROFESSIONAL MATCH INFO ========== */
.match-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-width: 80px;
}

.match-badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    min-width: 80px;
    transition: all var(--transition-fast);
}

.live-glow {
    background: var(--accent-red);
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 30px rgba(255, 0, 51, 0.5);
    }
}

.vs-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== PROFESSIONAL CONTENT CARDS ========== */
.content-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    margin: var(--space-3xl) 0;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    z-index: 1;
}

.content-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

/* ========== ENHANCED CONTENT CARD CONTENT STYLES ========== */
.content-card h2 {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    position: relative;
    padding-bottom: var(--space-sm);
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: var(--radius-full);
}

.content-card p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-card .cta-link {
    margin-top: var(--space-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ========== ENHANCED FAQ STYLING ========== */
.content-card h2 + p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.content-card p strong {
    display: block;
    color: var(--text-primary);
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.content-card p:has(strong) {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-light);
}

.content-card p:has(strong):last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ========== PROFESSIONAL FEATURE GRID ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.feature-item {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.feature-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========== PROFESSIONAL CTA LINK ========== */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: var(--space-xs) 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
}

.cta-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--primary-blue);
    transform: translateX(4px);
}

.cta-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-4px);
    transition: all var(--transition-fast);
}

.cta-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ========== PROFESSIONAL MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    display: none;
    justify-content: space-around;
    padding: var(--space-sm) 0;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-bottom-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-xs);
    transition: all var(--transition-fast);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    min-height: 48px;
    justify-content: center;
    flex: 1;
    max-width: 80px;
}

.mobile-bottom-link:hover,
.mobile-bottom-link.active {
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-bottom-link svg {
    width: 20px;
    height: 20px;
    transition: all var(--transition-fast);
}

.mobile-bottom-link.active svg {
    color: var(--primary-blue);
}

/* ========== PROFESSIONAL FOOTER - UPDATED FOR CENTERING ========== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--space-3xl) 0 var(--space-2xl);
    margin-top: var(--space-3xl);
    text-align: center; /* Ensures base text is centered */
}

.footer-grid {
    display: grid;
    /* Adjusted minmax for better responsiveness */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    text-align: center; /* Centers text within the grid cells */
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the list and heading vertically */
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-blue);
    font-weight: 600;
    /* Changed width to fit-content and used margin:auto to center the underline */
    width: fit-content; 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-links li {
    margin-bottom: var(--space-sm);
    text-align: center; /* Ensures link text is centered */
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    display: inline-block;
    padding: 2px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    /* Centers the hover underline */
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.footer-links a:hover {
    color: var(--text-primary);
    /* Removed translateX to keep it centered on hover */
    transform: translateY(-2px); 
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: var(--text-sm);
    max-width: 1200px; /* Increased for wider desktop display */
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    
    /* Layout Logic: Vertical/Centered on Mobile */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0; /* Reset margin since parent uses 'gap' */
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    /* THE FIX: Override the global 65ch limit that causes off-centering */
    max-width: none !important; 
    width: 100%;
}
/* Desktop: Switch to Professional 2-Column "Media" Layout */
@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-bottom p {
        width: 48%; /* Split into two columns */
        text-align: left;
    }

    /* Right-align the disclaimer on desktop for balance */
    .footer-bottom p:last-child {
        text-align: right;
    }
}

/* Ensure centering on very small screens */
@media (max-width: 480px) {
    .footer-grid {
        gap: var(--space-xl);
    }
    .footer-section h3 {
        margin-bottom: var(--space-md);
    }
}

/* ========== PROFESSIONAL FILTER SYSTEM ========== */
.filter-container {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-3xl) 0;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .filter-container {
        grid-template-columns: 2fr 1fr;
        gap: var(--space-xl);
        padding: var(--space-xl) var(--space-2xl);
    }
}

@media (max-width: 767px) {
    .filter-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-lg);
        margin: var(--space-2xl) var(--space-md);
    }
}

.filter-group {
    position: relative;
    width: 100%;
}

#search-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-base);
    font-family: inherit;
    transition: all var(--transition-base);
    height: 48px;
}

#search-input:hover {
    border-color: var(--border-heavy);
    background: var(--bg-surface);
}

#search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    background: var(--bg-surface);
}

#league-dropdown {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    padding-right: var(--space-2xl);
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-base);
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-base);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c8c8d8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    background-size: 16px;
    height: 48px;
}

#league-dropdown:hover {
    background-color: var(--bg-surface);
    border-color: var(--border-heavy);
}

#league-dropdown:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    background-color: var(--bg-surface);
}

/* ========== PROFESSIONAL LEAGUE SECTION ========== */
.league-section {
    margin-bottom: var(--space-3xl);
    scroll-margin-top: var(--space-2xl);
}

.league-section h2 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    scroll-margin-top: var(--space-3xl);
}

.league-section h2 svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* ========== PROFESSIONAL BROADCAST INFO ========== */
.broadcast-info {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.broadcast-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
}

.broadcast-info h3 {
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
    font-weight: 600;
}

.broadcast-info p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.broadcast-info p:last-child {
    margin-bottom: 0;
}

.broadcast-info ul {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.broadcast-info li {
    margin-bottom: var(--space-xs);
}

/* ========== PROFESSIONAL FAQ GRID ========== */
.faq-grid {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-q {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    line-height: var(--leading-tight);
}

.faq-a {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* ========== PROFESSIONAL SEASON INFO ========== */
.season-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.season-info-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    height: 100%;
}

.season-info-item:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
}

.season-info-item h4 {
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 600;
}

.season-info-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: var(--leading-relaxed);
}

/* ========== NO EVENTS MESSAGE ========== */
.no-events-message {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.no-events-message h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.no-events-message p {
    max-width: 600px;
    margin: 0 auto var(--space-md);
    line-height: var(--leading-relaxed);
}

/* ========== PROFESSIONAL BREADCRUMB ========== */
.breadcrumb {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb a::after {
    content: '→';
    margin-left: var(--space-xs);
    opacity: 0.5;
}

/* ========== PROFESSIONAL TEAM BOX ========== */
.team-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-box > div:last-child {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-primary);
    margin-top: var(--space-sm);
    max-width: 100%;
    line-height: 1.3;
}

/* ========== PROFESSIONAL UTILITY CLASSES ========== */
.text-gradient {
    color: var(--primary-blue);
    background: transparent;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--accent-red);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}

.visually-hidden {
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: 0;
}

/* ========== PROFESSIONAL ACCESSIBILITY ========== */
:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
}

.skip-to-main:focus {
    top: var(--space-sm);
}

/* High contrast support */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #ffffff;
        --border-color: #ffffff;
        --bg-dropdown: #1a1a1a;
        --bg-surface: #000000;
    }
    
    .event-button:hover {
        outline: 2px solid var(--primary-blue);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .live-indicator,
    .live-glow {
        animation: none;
    }
}

/* ========== PROFESSIONAL RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .content-card {
        padding: var(--space-xl) var(--space-lg);
        margin: var(--space-2xl) 0;
    }
    
    .hero-section {
        padding: 140px 0 var(--space-2xl);
    }
    
    .event-button {
        min-height: 60px;
    }
    
    .filter-container {
        margin: var(--space-2xl) var(--space-md);
    }
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .content-card {
        padding: var(--space-lg);
        margin: var(--space-xl) 0;
    }
    
    .feature-grid,
    .season-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .site-footer {
        padding: var(--space-2xl) 0 var(--space-xl);
    }
    
    .quick-links {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 calc(-1 * var(--space-md)) var(--space-2xl);
        padding: 0 var(--space-md) var(--space-sm);
    }
    
    .quick-links::-webkit-scrollbar {
        display: none;
    }
    
    .quick-link {
        flex-shrink: 0;
    }
    
    .card-body {
    padding: var(--space-xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    align-items: center;
    flex-grow: 1; /* This pushes everything else down */
}
    
    .team-logo {
        width: 48px;
        height: 48px;
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-section {
        padding: 120px 0 var(--space-xl);
    }
    
    .content-card {
        padding: var(--space-lg) var(--space-md);
        margin: var(--space-xl) 0;
    }
    
    .content-card h2 {
        font-size: var(--text-lg);
    }
    
    .mobile-nav {
        padding: var(--space-lg);
    }
    
    .filter-container {
        padding: var(--space-md);
        margin: var(--space-xl) var(--space-sm);
    }
    
    .breadcrumb {
        font-size: var(--text-xs);
    }
    
    .match-badge {
        font-size: var(--text-xs);
        padding: 4px 8px;
        min-width: 70px;
    }
}

/* Print styles */
@media print {
    .site-header,
    .mobile-bottom-nav,
    .timezone-selector-wrapper,
    .search-box,
    .quick-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* ========================================================
   SHARED SITE HEADER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â sport pill nav (all pages)
   Exact match to index.php CSS. Loaded in <head> via global.css.
   ======================================================== */

/* Header: sticky, blurred, dark ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â same as index.php */
header {
    background-color: rgba(6, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    overflow: visible;
}

/* Container: match index.php exactly (1280px, 20px padding) */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reset a tags inside header ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â overrides policy.css a{color:accent} */
header a,
header a:visited {
    color: inherit;
    text-decoration: none;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.05));
}
.logo img { height: 44px; width: auto; max-width: 200px; display: block; }

/* Timezone ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â hidden unless $show_timezone_selector set */
.tz-display {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    background: #1e2230;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.tz-display:hover { border-color: var(--primary); }
#tz-select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
#tz-select option { background: #1a1d26; color: #fff; }

/* NAV CONTAINER */
.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -20px;
    padding: 0 20px;
    /* No overflow:hidden ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â that clips the scroll */
}

/* SPORT NAV ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â horizontal scroll */
.sport-nav {
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 14px 0;
    display: flex;
    gap: 10px;
    scroll-behavior: smooth;
    flex: 1;
}
.sport-nav::-webkit-scrollbar { display: none; }

/* FADE GRADIENTS */
.nav-fade-left, .nav-fade-right {
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s;
}
.nav-fade-left  { left: 20px;  background: linear-gradient(to right, var(--bg-color), transparent); opacity: 0; }
.nav-fade-right { right: 20px; background: linear-gradient(to left, var(--bg-color), transparent); }

/* NAV ARROWS */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-primary);
    transition: all 0.2s;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
}
.nav-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.nav-arrow.visible { opacity: 1; pointer-events: auto; }
.nav-arrow-left  { left: 4px; }
.nav-arrow-right { right: 4px; }

/* SPORT PILLS ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â exact match to index.php */
.sport-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    min-height: 48px;
}
.sport-pill i { font-size: 18px; }
.sport-pill:hover {
    background-color: var(--surface-hover);
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-secondary); /* override policy.css a:hover{color:#fff} */
}
.sport-pill.active {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .sport-pill { padding: 8px 16px; font-size: 13px; margin: 2px 0; }
    .top-bar    { height: 64px; }
    
    /* 100/100 Lighthouse Mobile UX Touch Targets */
    .nav-link, 
    .sport-pill,
    .mobile-menu-btn,
    .btn-primary,
    .btn-ghost,
    .dropdown-toggle,
    button[class*="nav-arrow"] {
        min-height: 48px !important;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Base utility classes for JavaScript DOM operations */
.hidden {
    display: none !important;
}
/* ========== STREAM2WATCH PROFESSIONAL MEDIA PLATFORM 2026 ========== */
/* PREMIUM SPORTS UI - ESPN/PRIME VIDEO QUALITY STANDARDS */
/* MOBILE-FIRST OPTIMIZED - VERSION 7.0.3 */
/* FULL CODE - NO PLACEHOLDERS - 100% COMPLETE */
/* ==================================================================== */

:root {
    /* ===== PREMIUM SPORTS COLOR SYSTEM 2026 ===== */
    --premium-blue: #0066ff;
    --premium-blue-dark: #004ecc;
    --premium-blue-glow: rgba(0, 102, 255, 0.4);
    --premium-red: #ff0033;
    --premium-red-glow: rgba(255, 0, 51, 0.4);
    --premium-green: #00cc66;
    --premium-green-glow: rgba(0, 204, 102, 0.3);
    --premium-yellow: #ffcc00;
    --premium-yellow-glow: rgba(255, 204, 0, 0.3);
    
    /* Surface Foundation - Dark Sports Theme - ENHANCED CONTRAST */
    --bg-primary: #0a0a0f;
    --bg-secondary: #121218;
    --bg-surface: #1a1a24;
    --bg-elevated: #252532;
    --bg-card: linear-gradient(145deg, #1a1a2e, #16213e);
    --bg-dropdown: #2d2d40;
    --bg-overlay: rgba(0, 0, 0, 0.92);
    
    /* Text Hierarchy - WCAG AA+ COMPLIANT */
    --text-primary: #ffffff;
    --text-secondary: #e8e8f0;
    --text-muted: #a8a8c0;
    --text-accent: var(--premium-blue);
    --text-on-dark: #ffffff;
    --text-on-light: #1a1a1a;
    
    /* Premium Gradients */
    --gradient-premium: linear-gradient(135deg, var(--premium-blue), var(--premium-blue-dark));
    --gradient-live: linear-gradient(135deg, var(--premium-red), #cc0033);
    --gradient-card: linear-gradient(145deg, #1a1a2e, #16213e);
    --gradient-hero: radial-gradient(circle at 50% 0%, rgba(0,102,255,0.15) 0%, rgba(10,10,15,0.98) 100%);
    --gradient-surface: linear-gradient(180deg, var(--bg-surface), var(--bg-elevated));
    
    /* Premium Shadows */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.4);
    --shadow-glow-blue: 0 0 20px var(--premium-blue-glow);
    --shadow-glow-red: 0 0 20px var(--premium-red-glow);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    
    /* Borders */
    --border-light: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-heavy: rgba(255, 255, 255, 0.15);
    
    /* ===== PROFESSIONAL SPACING SYSTEM (4px base) ===== */
    --space-unit: 4px;
    --space-xs: calc(var(--space-unit) * 1);
    --space-sm: calc(var(--space-unit) * 2);
    --space-md: calc(var(--space-unit) * 4);
    --space-lg: calc(var(--space-unit) * 6);
    --space-xl: calc(var(--space-unit) * 8);
    --space-2xl: calc(var(--space-unit) * 12);
    --space-3xl: calc(var(--space-unit) * 16);
    --space-4xl: calc(var(--space-unit) * 24);
    
    /* ===== BORDER RADIUS SYSTEM ===== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* ===== TRANSITIONS ===== */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* ===== Z-INDEX LAYERS ===== */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* ===== TYPOGRAPHY - MOBILE-FIRST FLUID SYSTEM ===== */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', 'Roboto Mono', monospace;
    
    /* Fluid type scale - mobile first, scales gracefully */
    --fluid-xs: clamp(0.75rem, 2vw, 0.875rem);
    --fluid-sm: clamp(0.875rem, 2.5vw, 1rem);
    --fluid-base: clamp(1rem, 3vw, 1.125rem);
    --fluid-lg: clamp(1.125rem, 4vw, 1.25rem);
    --fluid-xl: clamp(1.25rem, 5vw, 1.5rem);
    --fluid-2xl: clamp(1.5rem, 6vw, 1.875rem);
    --fluid-3xl: clamp(1.75rem, 7vw, 2.25rem);
    --fluid-4xl: clamp(2rem, 8vw, 3rem);
    --fluid-5xl: clamp(2.25rem, 10vw, 4rem);
    
    /* Legacy variables - keep for backward compatibility */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.6;
    
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    
    --weight-bold: 700;
    --weight-semibold: 600;
    --weight-medium: 500;
    
    /* Calm status colors - no bright red */
    --status-highrisk: #8b5cf6;
    --status-highrisk-bg: rgba(139, 92, 246, 0.15);
    --status-limited: #f59e0b;
    --status-limited-bg: rgba(245, 158, 11, 0.15);
    --status-available: #10b981;
    --status-available-bg: rgba(16, 185, 129, 0.15);
}

/* ========== CSS RESET - MODERN ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: clip;
    position: relative;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    font-size: var(--fluid-base);
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

/* ========== PROFESSIONAL TYPOGRAPHY SYSTEM - MOBILE FIRST ========== */
h1, .h1 {
    font-size: var(--fluid-5xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

h2, .h2 {
    font-size: var(--fluid-3xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

h3, .h3 {
    font-size: var(--fluid-2xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h4, .h4 {
    font-size: var(--fluid-xl);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h5, .h5 {
    font-size: var(--fluid-lg);
    font-weight: 600;
    line-height: var(--leading-normal);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

h6, .h6 {
    font-size: var(--fluid-base);
    font-weight: 600;
    line-height: var(--leading-normal);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

p {
    font-size: var(--fluid-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 65ch;
}

.lead {
    font-size: var(--fluid-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    font-weight: 400;
}

.small, .caption {
    font-size: var(--fluid-xs);
    line-height: var(--leading-normal);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.text-gradient {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== LAYOUT SYSTEM - MOBILE FIRST ========== */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

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

.container-wide {
    max-width: 100%;
}

@media (min-width: 1280px) {
    .container-wide {
        max-width: 1600px;
    }
}

/* Grid System - Mobile First */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 767px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
}

/* Flex System */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Section Spacing - Mobile First */
.section {
    padding: var(--space-2xl) 0;
}

.section-sm {
    padding: var(--space-xl) 0;
}

.section-lg {
    padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }
    .section-lg {
        padding: var(--space-4xl) 0;
    }
}

/* ========== PROFESSIONAL HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: var(--z-fixed);
    height: 72px;
    display: flex;
    align-items: center;
    transition: all var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(25px);
}

.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 32px;
    width: auto;
    display: block;
    transition: transform var(--transition-smooth);
}

@media (min-width: 768px) {
    .site-logo img {
        height: 40px;
    }
}

.site-logo:hover img {
    transform: scale(1.05);
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
    display: flex;
    gap: var(--space-xs);
    margin-left: auto;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
}

.nav-link {
    position: relative;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fluid-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.nav-link:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(0, 102, 255, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--gradient-premium);
    border-radius: 1px;
}

/* ========== DROPDOWNS ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: var(--space-sm) var(--space-md);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-dropdown);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    min-width: 240px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-dropdown);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: var(--fluid-sm);
    font-weight: 500;
    min-height: 48px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--premium-blue);
    padding-left: var(--space-lg);
    transform: translateX(4px);
}

.dropdown-item:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: -2px;
}

/* ========== MOBILE NAVIGATION - ENHANCED ========== */
.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: var(--z-modal);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--premium-blue);
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
}

.mobile-menu-btn[aria-expanded="true"] {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--premium-blue);
}

.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: var(--z-modal);
    padding: var(--space-xl);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    border-top: 1px solid var(--border-color);
    visibility: hidden;
    overscroll-behavior: contain;
}

.mobile-nav.active {
    transform: translateX(0);
    visibility: visible;
}

@supports (-webkit-touch-callout: none) {
    .mobile-nav {
        height: -webkit-fill-available;
    }
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--space-xl);
}

.mobile-nav-close {
    width: 48px;
    height: 48px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--premium-blue);
}

.mobile-nav-close:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-nav-link {
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--fluid-lg);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(0, 102, 255, 0.1);
    color: var(--premium-blue);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(4px);
}

.mobile-nav-link:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: -2px;
}

.mobile-dropdown {
    margin-bottom: var(--space-sm);
}

.mobile-dropdown-toggle {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--fluid-lg);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
    min-height: 56px;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--premium-blue);
}

.mobile-dropdown-menu {
    padding: var(--space-md) 0;
    border-left: 2px solid var(--premium-blue);
    margin-left: var(--space-lg);
    margin-top: var(--space-sm);
}

.mobile-dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--fluid-base);
    transition: all var(--transition-fast);
    min-height: 48px;
    display: flex;
    align-items: center;
}

.mobile-dropdown-menu a:hover {
    color: var(--premium-blue);
    padding-left: var(--space-xl);
    background: rgba(0, 102, 255, 0.05);
}

.mobile-dropdown-menu a:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: -2px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 100px 0 var(--space-2xl);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 140px 0 var(--space-3xl);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--premium-blue), transparent);
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    text-align: center;
    font-size: var(--fluid-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 auto var(--space-md);
    color: var(--text-primary);
}

.hero-description {
    font-size: var(--fluid-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-sm);
}

/* ========== PREMIUM EVENT CARD - ENHANCED INTERACTIVITY ========== */
.event-button {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    background: var(--gradient-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    padding: var(--space-lg) !important;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all var(--transition-smooth) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-sm) !important;
    height: 100% !important;
    min-height: 280px !important;
    text-align: left !important;
}

.event-button:hover {
    transform: translateY(-4px) scale(1.02) !important;
    border-color: var(--premium-blue) !important;
    box-shadow: var(--shadow-glow-blue), var(--shadow-lg) !important;
    background: linear-gradient(145deg, #1e1e36, #1a1a2e) !important;
}

.event-button:focus-visible {
    outline: 2px solid var(--premium-blue) !important;
    outline-offset: 2px !important;
}

.event-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-premium);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.event-button:hover::after,
.event-button:focus-visible::after {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: var(--fluid-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.event-date {
    background: rgba(0, 102, 255, 0.12);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    color: var(--premium-blue);
    font-weight: 700;
    font-size: var(--fluid-xs);
}

.card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    flex: 1 0 auto;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.team-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .team-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.team-name {
    font-weight: 600;
    font-size: var(--fluid-sm);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    color: var(--text-primary);
    line-height: 1.3;
    word-break: break-word;
    white-space: normal !important;
}

.match-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin: 0 var(--space-xs);
}

.match-badge {
    background: var(--gradient-premium);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    min-width: 80px;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .match-badge {
        padding: 8px 14px;
        font-size: 0.875rem;
        min-width: 90px;
    }
}

.match-badge.live-glow {
    background: var(--gradient-live);
    animation: pulse-live 1.8s infinite;
    box-shadow: var(--shadow-glow-red);
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 10px var(--premium-red-glow); }
    50% { box-shadow: 0 0 25px var(--premium-red); }
}

.event-time {
    font-size: 0.8rem;
    font-weight: 700;
}

.timezone-abbr {
    font-size: 0.6rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 2px;
}

.vs-text {
    font-size: var(--fluid-xs);
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

/* ========== CRITICAL FIX - STREAM INDICATORS BOTTOM ALIGNMENT ========== */
.stream-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-light);
    margin-top: auto !important;
    flex-shrink: 0;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-premium);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: var(--weight-bold);
    font-size: var(--fluid-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    min-height: 48px;
    min-width: 160px;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    font-family: var(--font-primary);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--premium-blue-dark), #003399);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue), var(--shadow-md);
}

.cta-button:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
}

.cta-button:active {
    transform: translateY(0);
}

/* Stream Icons */
.stream-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--premium-blue);
    font-weight: var(--weight-bold);
    font-size: var(--fluid-xs);
    padding: 4px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    line-height: 1;
    min-height: 28px;
    white-space: nowrap;
}

.stream-icon:hover {
    background: var(--premium-blue);
    color: white;
    border-color: var(--premium-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow-blue);
}

/* Live Pulse Animation */
.live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--premium-red);
    font-weight: var(--weight-bold);
    font-size: var(--fluid-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-live-text 1.5s infinite;
    background: rgba(255, 0, 51, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 0, 51, 0.2);
    min-height: 36px;
}

.live-pulse::before {
    content: '•';
    font-size: var(--fluid-base);
    margin-right: 2px;
}

@keyframes pulse-live-text {
    0%, 100% { opacity: 1; background: rgba(255, 0, 51, 0.1); }
    50% { opacity: 0.8; background: rgba(255, 0, 51, 0.2); }
}

/* Live Checker Widget */
.live-checker-widget {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-xl) auto;
    max-width: 700px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.checker-input-group {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.checker-input-group input {
    flex: 1;
    height: 52px;
    padding: 0 var(--space-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--fluid-base);
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

.checker-input-group input:focus {
    border-color: var(--premium-blue);
    box-shadow: 0 0 0 3px var(--premium-blue-glow);
    outline: none;
    background: var(--bg-surface);
}

.checker-input-group input::placeholder {
    color: var(--text-muted);
}

.checker-results {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-md);
    border: 1px solid var(--border-color);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.result-header h3 {
    color: var(--text-primary);
    font-size: var(--fluid-lg);
    font-weight: var(--weight-bold);
    margin: 0;
}

.legal-badge {
    background: var(--premium-green);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--fluid-xs);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-body p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: var(--fluid-sm);
    line-height: 1.6;
}

.result-body a {
    color: var(--premium-blue);
    text-decoration: none;
    font-weight: var(--weight-semibold);
    transition: color var(--transition-fast);
}

.result-body a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.disclaimer {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
}

/* Broadcast Status Cards */
.broadcast-map {
    margin: var(--space-xl) 0;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

@media (min-width: 768px) {
    .status-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

.status-item {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
}

.status-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-heavy);
}

.status-header {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--weight-bold);
}

.status-item.highrisk .status-header {
    background: var(--status-highrisk-bg);
    color: var(--status-highrisk);
    border-bottom-color: var(--status-highrisk);
}

.status-item.limited .status-header {
    background: var(--status-limited-bg);
    color: var(--status-limited);
    border-bottom-color: var(--status-limited);
}

.status-item.available .status-header {
    background: var(--status-available-bg);
    color: var(--status-available);
    border-bottom-color: var(--status-available);
}

.status-badge {
    font-size: var(--fluid-xs);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.status-item.highrisk .status-badge {
    background: var(--status-highrisk);
    color: white;
}

.status-item.limited .status-badge {
    background: var(--status-limited);
    color: white;
}

.status-item.available .status-badge {
    background: var(--status-available);
    color: white;
}

.status-icon {
    font-size: 1.25rem;
    opacity: 0.9;
}

.status-content {
    padding: var(--space-lg);
}

.status-content h4 {
    color: var(--text-primary);
    font-size: var(--fluid-lg);
    font-weight: var(--weight-bold);
    margin: 0 0 var(--space-xs) 0;
}

.status-content p {
    color: var(--text-secondary);
    font-size: var(--fluid-sm);
    line-height: 1.5;
    margin: 0 0 var(--space-md) 0;
}

.status-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.status-tags .tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: var(--fluid-xs);
    font-weight: var(--weight-medium);
    border: 1px solid var(--border-light);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: var(--premium-blue);
    transform: translateY(-2px);
}

.feature-item h4 {
    color: var(--text-primary);
    font-size: var(--fluid-lg);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-sm);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: var(--fluid-sm);
    line-height: 1.6;
    margin: 0;
}

/* ========== EVENTS GRID ========== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

.category-section {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .category-section {
        padding: var(--space-3xl) 0;
    }
}

.category-section:last-of-type {
    border-bottom: none;
}

.category-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    font-size: var(--fluid-2xl);
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 102, 255, 0.2);
    padding-bottom: var(--space-sm);
}

.category-title svg {
    color: var(--premium-blue);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* ========== PREMIUM FILTER SYSTEM ========== */
.filter-container {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--space-sm) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto var(--space-xl) auto !important;
    padding: var(--space-md) !important;
    background: var(--bg-secondary) !important;
    border-radius: var(--radius-xl) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
}

@media (min-width: 768px) {
    .filter-container {
        flex-direction: row !important;
        max-width: 1200px !important;
        margin: 0 auto var(--space-2xl) auto !important;
    }
}

.filter-group {
    flex: 1 !important;
    min-width: 0 !important;
}

.filter-input {
    width: 100% !important;
    height: 48px !important;
    padding: 0 var(--space-lg) !important;
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    color: var(--text-primary) !important;
    font-size: var(--fluid-sm) !important;
    transition: all var(--transition-smooth) !important;
    font-family: var(--font-primary) !important;
}

.filter-input:hover {
    border-color: var(--border-heavy) !important;
    background: var(--bg-surface) !important;
}

.filter-input:focus {
    border-color: var(--premium-blue) !important;
    box-shadow: 0 0 0 3px var(--premium-blue-glow) !important;
    outline: none !important;
    background: var(--bg-surface) !important;
}

.filter-input::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7 !important;
}

#league-dropdown {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c8c8d8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px !important;
    padding-right: 44px !important;
    cursor: pointer !important;
}

/* ========== QUICK LINKS - ENHANCED TOUCH TARGETS ========== */
.quick-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: var(--space-xs) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: var(--space-xl) auto !important;
    padding: var(--space-sm) !important;
}

@media (min-width: 1280px) {
    .quick-links {
        max-width: 1200px !important;
    }
}

.quick-link {
    padding: 8px 18px !important;
    background: rgba(0, 102, 255, 0.08) !important;
    color: var(--text-secondary) !important;
    border-radius: var(--radius-full) !important;
    font-size: var(--fluid-sm) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: 1px solid rgba(0, 102, 255, 0.2) !important;
    transition: all var(--transition-smooth) !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
}

.quick-link:hover {
    background: var(--premium-blue) !important;
    color: white !important;
    border-color: var(--premium-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-glow-blue) !important;
}

.quick-link:focus-visible {
    outline: 2px solid var(--premium-blue) !important;
    outline-offset: 2px !important;
}

/* ========== PREMIUM STATS & TRUST BADGES ========== */
.dynamic-stats {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-2xl) auto;
    max-width: 1000px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--premium-blue);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: var(--fluid-sm);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-signals {
    margin: var(--space-2xl) auto;
    max-width: 1200px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
}

@media (min-width: 768px) {
    .trust-item {
        flex-direction: row;
        text-align: left;
    }
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: var(--premium-blue);
    box-shadow: var(--shadow-glow-blue);
}

.trust-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.trust-content h4 {
    color: var(--text-primary);
    font-size: var(--fluid-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.trust-content p {
    color: var(--text-secondary);
    font-size: var(--fluid-sm);
    margin-bottom: var(--space-sm);
}

.trust-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--fluid-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badge.live {
    background: var(--gradient-live);
    color: white;
}

.trust-badge.quality {
    background: var(--gradient-premium);
    color: white;
}

.trust-badge.legal {
    background: var(--premium-green);
    color: white;
}

/* ========== CONTENT CARDS ========== */
.content-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-xl) auto;
    max-width: 1200px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .content-card {
        padding: var(--space-2xl);
        margin: var(--space-2xl) auto;
    }
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-premium);
    z-index: 1;
}

.content-card h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    border-bottom: 2px solid rgba(0, 102, 255, 0.2);
    padding-bottom: var(--space-sm);
}

.content-card h3 {
    color: var(--text-primary);
    margin: var(--space-xl) 0 var(--space-md);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.content-card ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.content-card li {
    margin-bottom: var(--space-xs);
}

/* ========== BROADCAST INFO ========== */
.broadcast-info {
    background: rgba(0, 102, 255, 0.06);
    border-left: 4px solid var(--premium-blue);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.broadcast-info h3 {
    color: var(--premium-blue);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: var(--fluid-xl);
}

.broadcast-info p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.broadcast-info p:last-child {
    margin-bottom: 0;
}

/* ========== FAQ GRID ========== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--premium-blue);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
}

.faq-q {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--fluid-lg);
}

.faq-a {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    font-size: var(--fluid-sm);
}

/* ========== SEASON INFO GRID ========== */
.season-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .season-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.season-info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-smooth);
    text-align: center;
}

.season-info-item:hover {
    border-color: var(--premium-blue);
    transform: translateY(-2px);
    background: rgba(0, 102, 255, 0.05);
}

.season-info-item h4 {
    color: var(--premium-blue);
    margin-bottom: var(--space-sm);
    font-size: var(--fluid-lg);
    text-align: center;
}

.season-info-item p {
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

/* ========== AI OVERVIEW TABLE ========== */
.aio-summary {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-xl) auto;
    max-width: 1200px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .aio-summary {
        padding: var(--space-2xl);
        margin: var(--space-2xl) auto;
    }
}

.aio-summary h2 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.aio-summary p {
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.aio-summary table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    display: block;
    overflow-x: auto;
}

@media (min-width: 768px) {
    .aio-summary table {
        display: table;
    }
}

.aio-summary th {
    background: rgba(0, 102, 255, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    padding: var(--space-md);
    text-align: left;
    border-bottom: 2px solid var(--premium-blue);
}

.aio-summary td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-align: left;
}

.aio-summary tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: var(--fluid-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.breadcrumb a {
    color: var(--premium-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb a:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ========== CTA LINK ========== */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--premium-blue);
    text-decoration: none;
    font-weight: 700;
    padding: var(--space-xs) 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.cta-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--premium-blue);
    transform: translateX(4px);
}

.cta-link:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.cta-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-4px);
    transition: all var(--transition-fast);
}

.cta-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ========== MOBILE BOTTOM NAV - ENHANCED ========== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: var(--space-sm) 0;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
}

@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

body {
    padding-bottom: 80px;
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

.mobile-bottom-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--fluid-xs);
    transition: all var(--transition-fast);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    min-height: 56px;
    justify-content: center;
    flex: 1;
    max-width: 80px;
}

.mobile-bottom-link:hover,
.mobile-bottom-link.active {
    color: var(--premium-blue);
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-bottom-link:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
}

/* ========== FOOTER - CENTERED ========== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--space-2xl) 0 var(--space-xl);
    margin-top: var(--space-3xl);
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer {
        padding: var(--space-3xl) 0 var(--space-2xl);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
        margin-bottom: var(--space-2xl);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: var(--fluid-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--premium-blue);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-links li {
    margin-bottom: var(--space-sm);
    text-align: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--fluid-sm);
    transition: all var(--transition-fast);
    display: inline-block;
    padding: 8px 0;
    min-height: 48px;
    line-height: 28px;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--premium-blue);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: var(--fluid-sm);
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.footer-bottom p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

/* ========== TIMEZONE SELECTOR - ENHANCED ========== */
.timezone-selector-wrapper {
    position: fixed;
    top: 80px;
    right: 10px;
    z-index: var(--z-dropdown);
}

@media (min-width: 768px) {
    .timezone-selector-wrapper {
        top: 90px;
        right: 20px;
    }
}

.timezone-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--premium-blue);
    font-weight: 600;
    font-size: var(--fluid-sm);
    cursor: pointer;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
    min-height: 48px;
}

.timezone-indicator:hover {
    background: rgba(0, 102, 255, 0.25);
    border-color: var(--premium-blue);
    transform: translateY(-2px);
}

.timezone-indicator:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
}

.timezone-selector {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: var(--bg-dropdown);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-xl);
}

.timezone-selector.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.timezone-selector select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--fluid-sm);
    font-family: var(--font-primary);
    cursor: pointer;
    min-height: 48px;
}

.timezone-selector select:focus {
    border-color: var(--premium-blue);
    box-shadow: 0 0 0 3px var(--premium-blue-glow);
    outline: none;
}

/* ========== ACCESSIBILITY - ENHANCED ========== */
:focus-visible {
    outline: 2px solid var(--premium-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--premium-blue);
    color: white;
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
    font-weight: 600;
}

.skip-to-main:focus {
    top: var(--space-sm);
    left: var(--space-sm);
    outline: none;
}

.visually-hidden {
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: 0;
}

/* ========== MOBILE RESPONSIVE ENHANCEMENTS ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
        word-break: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: 1rem !important;
        padding: 0 var(--space-sm);
    }
    
    .quick-links {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding-bottom: var(--space-xs) !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .quick-link {
        flex-shrink: 0 !important;
        min-height: 44px !important;
    }
    
    .checker-input-group {
        flex-direction: column;
    }
    
    .checker-input-group button {
        width: 100%;
        min-height: 52px !important;
    }
    
    /* Tap target enhancements */
    .nav-link,
    .dropdown-toggle,
    .mobile-menu-btn,
    .mobile-nav-close,
    .mobile-bottom-link,
    .event-button,
    .timezone-indicator,
    .filter-input,
    #timezoneSelect,
    .cta-button {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    .stream-icon {
        min-height: 36px !important;
        min-width: 44px !important;
        padding: 8px 12px !important;
        margin: 2px !important;
    }
    
    .mobile-bottom-link {
        min-height: 56px !important;
        padding: 8px 4px !important;
    }
    
    .stream-indicators {
        gap: 8px !important;
        padding: 12px 0 4px !important;
    }
    
    .event-button {
        min-height: 260px !important;
        padding: var(--space-md) !important;
    }
    
    .team-logo {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .match-badge {
        min-width: 70px;
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .team-name {
        font-size: 0.75rem;
    }
    
    .aio-summary table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .aio-summary th,
    .aio-summary td {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 0 var(--space-xl);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }
    
    .event-button {
        min-height: 240px !important;
    }
    
    .team-name {
        font-size: 0.7rem;
    }
    
    .content-card {
        padding: var(--space-lg);
        margin: var(--space-lg) var(--space-sm);
    }
    
    .match-badge {
        min-width: 65px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 1.75rem) !important;
    }
    
    .team-logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .team-name {
        font-size: 0.65rem;
    }
    
    .match-badge {
        min-width: 60px;
        padding: 4px 6px;
        font-size: 0.65rem;
    }
    
    .stream-icon {
        min-width: 40px !important;
        padding: 6px 8px !important;
        font-size: 0.65rem;
    }
}

/* ========== HIGH CONTRAST SUPPORT ========== */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #ffffff;
        --text-muted: #f0f0f0;
        --border-color: #ffffff;
        --bg-dropdown: #1a1a1a;
    }
    
    .event-button {
        border: 2px solid white;
    }
    
    .stream-icon,
    .quick-link,
    .timezone-indicator {
        border-width: 2px;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .match-badge.live-glow,
    .live-pulse {
        animation: none;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .site-header,
    .mobile-bottom-nav,
    .timezone-selector-wrapper,
    .filter-container,
    .quick-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        padding: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .event-button {
        border: 1px solid black !important;
        break-inside: avoid;
        box-shadow: none !important;
        background: white !important;
        color: black !important;
    }
    
    .team-name,
    .card-header,
    .match-badge,
    .vs-text,
    .stream-icon {
        color: black !important;
    }
}
/* --- STYLES MOVED FROM HEADER.PHP --- */

/* ============================================================
   HEADER + SPORT NAV ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â inline in header.php (bypasses CDN cache)
   Values exactly match index.php. Updated 2026-03.
   ============================================================ */

/* Sticky dark header */
header {
    background-color: rgba(11, 15, 23, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    overflow: visible;
}

/* Fix: policy.css sets a{color:blue} ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â override for header links only */
header a, header a:visited { color: inherit; text-decoration: none; }
header a:hover { color: inherit; }

/* Container ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â match index.php exactly */
header .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Top bar row */
.top-bar { display: flex; justify-content: space-between; align-items: center; height: 72px; padding: 0; position: relative; z-index: 50; }
.logo { display: flex; align-items: center; text-decoration: none; filter: drop-shadow(0 0 12px rgba(255,255,255,0.05)); }
.logo img { height: 44px; width: auto; display: block; }

/* Timezone picker */
.tz-display { font-size: 13px; font-weight: 700; color: #f8fafc; background: #1e2230; padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
#tz-select { background: transparent; border: none; color: #f8fafc; font-weight: 700; font-size: 13px; cursor: pointer; outline: none; appearance: none; -webkit-appearance: none; }
#tz-select option { background: #1a1d26; color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Nav scroll wrapper */
.nav-container { position: relative; display: flex; align-items: center; margin: 0 -20px; padding: 0 20px; }

html { scroll-padding-top: 150px; scroll-behavior: smooth; }

/* Horizontal pill track */
.nav-container { border-top: 1px solid rgba(255,255,255,0.06); margin: 0 -20px; padding: 0 20px; position: relative; }
.sport-nav { position: relative; display: flex; gap: 4px; padding: 0; overflow-x: auto; white-space: nowrap; scroll-behavior: smooth; scrollbar-width: none; flex: 1; }
.sport-nav::-webkit-scrollbar { display: none; }

/* SPORT TABS ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Flat glowing underline style */
.sport-pill { display: inline-flex; align-items: center; gap: 8px; padding: 16px 12px; background: transparent !important; border: none; border-bottom: 3px solid transparent; border-radius: 0; font-size: 14px; font-weight: 700; color: #94a3b8; text-decoration: none; white-space: nowrap; transition: all 0.2s ease; cursor: pointer; flex-shrink: 0; min-height: unset; box-shadow: none !important; }
.sport-pill i { font-size: 18px; transition: color 0.2s; opacity: 0.6; }
.sport-pill:hover { background: transparent !important; transform: none; border-bottom-color: rgba(255, 255, 255, 0.4); color: #f8fafc; box-shadow: none; }
.sport-pill:hover i { opacity: 1; }
.sport-pill.active { background: transparent !important; color: #60a5fa !important; border-bottom-color: #3b82f6 !important; box-shadow: none !important; text-shadow: 0 0 12px rgba(59,130,246,0.6) !important; }
.sport-pill.active i { color: #60a5fa !important; opacity: 1; text-shadow: 0 0 12px rgba(59,130,246,0.6) !important; }

/* Edge fade overlays */
.nav-fade-left, .nav-fade-right { position: absolute; top: 0; bottom: 0; width: 60px; pointer-events: none; z-index: 2; transition: opacity 0.3s; }
.nav-fade-left  { left: 20px;  background: linear-gradient(to right, #0b0f17 20%, transparent); opacity: 0; }
.nav-fade-right { right: 20px; background: linear-gradient(to left,  #0b0f17 20%, transparent); }

/* Scroll arrows */
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(18, 20, 28, 0.9); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; color: #f8fafc; transition: all 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.5); opacity: 0; pointer-events: none; backdrop-filter: blur(4px); }
.nav-arrow:hover { background: #2563eb; border-color: #3b82f6; transform: translateY(-50%) scale(1.1); color: #fff; }
.nav-arrow.visible { opacity: 1; pointer-events: auto; }
.nav-arrow-left  { left: 4px; }
.nav-arrow-right { right: 4px; }

@media (max-width: 768px) {
    .sport-pill { padding: 14px 12px; font-size: 14px; min-height: unset; border-radius: 0; gap: 6px; margin: 0 2px; }
    .sport-pill i { font-size: 16px; }
    .top-bar { height: auto; min-height: 64px; flex-direction: row; justify-content: space-between; align-items: center; padding: 12px 0; gap: 12px; flex-wrap: nowrap; margin-bottom: 0; }
    .brand-group span { display: none !important; } /* Hide long subtitle on mobile completely */
    .logo img { height: 32px; width: auto; }
    .header-actions { width: auto; justify-content: flex-end; margin-top: 0; gap: 8px; }
    .legal-badge { padding: 6px 8px; font-size: 10px; white-space: nowrap; border-radius: 6px; }
    .tz-display { padding: 4px 8px; font-size: 11px; margin-left: 0; }
    #time-val { display: none; }
    .hide-mobile { display: none !important; }
    .nav-arrow { display: none !important; } /* Hide arrows on mobile to enforce native swiping */
    .nav-fade-right { right: 0; width: 40px; background: linear-gradient(to left, #0b0f17 30%, transparent); opacity: 1 !important; z-index: 5; pointer-events: none; }
    .nav-fade-left { left: 0; width: 30px; background: linear-gradient(to right, #0b0f17 30%, transparent); opacity: 0; z-index: 5; pointer-events: none; transition: opacity 0.3s;}
    header .container { padding: 0 16px; }
    .nav-container { margin: 0 -16px; padding: 0 16px; position: relative; }
    .sport-nav { padding-top: 0; padding-bottom: 0; gap: 4px; }
    .sport-nav::-webkit-scrollbar { display: none; }
    html { scroll-padding-top: 110px; }
}

/* Header Dropdown */
.header-dropdown { position: relative; display: inline-block; z-index: 9999; }
.header-btn { font-size: 13px; font-weight: 700; color: #f8fafc; background: #1e2230; padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.2s; height: 36px; box-sizing: border-box; position: relative; z-index: 9999; }
.header-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.header-dropdown-menu { position: absolute; right: 0; top: calc(100% + 10px); background: #12141c; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 8px; min-width: 220px; box-shadow: 0 10px 40px rgba(0,0,0,0.9); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 99999; }
.header-dropdown-menu::before { content: ''; position: absolute; top: -15px; left: 0; right: 0; height: 15px; /* Invisible bridge to prevent hover dropout */ }
.header-dropdown:hover .header-dropdown-menu, .header-dropdown.open .header-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.header-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: #cbd5e1; text-decoration: none; border-radius: 8px; font-size: 14px; font-weight: 700; transition: 0.2s; margin-bottom: 2px; }
.header-dropdown-item:last-child { margin-bottom: 0; }
.header-dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; transform: translateX(4px); }

/* --- STYLES MOVED FROM INDEX.PHP --- */



        :root {
            --bg-color: #06080a;
            --surface-color: #12141c;
            --surface-hover: #1b1f29;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --border-color: rgba(255,255,255,0.06);
            --primary: #2563eb;
            --primary-glow: rgba(37, 99, 235, 0.4);
            --live-red: #ef4444;
            --accent-green: #22c55e;
            --safe-bottom: env(safe-area-inset-bottom, 0px);
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
            --bg-elevated: #1a1d26;
            --bg-card: #0f1117;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; -webkit-tap-highlight-color: transparent; letter-spacing: -0.01em; }
        html { width: 100%; max-width: 100vw; scroll-padding-top: 150px; scroll-behavior: smooth; overflow-x: clip; }
        body { background-color: var(--bg-color); color: var(--text-primary); padding-bottom: calc(70px + var(--safe-bottom)); line-height: 1.6; font-size: 16px; position: relative; width: 100%; max-width: 100vw; overflow-x: clip; }
        a { text-decoration: none; color: inherit; transition: all 0.2s; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

        /* Premium Header */
        header { background-color: rgba(6, 8, 10, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); position: -webkit-sticky; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .top-bar { display: flex; justify-content: space-between; align-items: center; height: 72px; }
        .logo { filter: drop-shadow(0 0 12px rgba(255,255,255,0.05)); }
        .tz-display { font-size: 13px; font-weight: 700; color: var(--text-primary); background: #1e2230; padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border-color); display: flex; align-items: center; gap: 8px; }

        /* Pro Navigation */
        .nav-container { position: relative; display: flex; align-items: center; margin: 0 -20px; padding: 0 20px; width: calc(100% + 40px); max-width: 100vw; }
        .sport-nav { overflow-x: auto; white-space: nowrap; -ms-overflow-style: none; scrollbar-width: none; padding: 14px 0; display: flex; gap: 10px; scroll-behavior: smooth; flex: 1; }
        .sport-nav::-webkit-scrollbar { display: none; }
        
        .nav-fade-left, .nav-fade-right { position: absolute; top: 0; bottom: 0; width: 40px; pointer-events: none; z-index: 2; transition: opacity 0.3s; }
        .nav-fade-left { left: 20px; background: linear-gradient(to right, var(--bg-color), transparent); opacity: 0; }
        .nav-fade-right { right: 20px; background: linear-gradient(to left, var(--bg-color), transparent); }
        
        .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; color: var(--text-primary); transition: all 0.2s; box-shadow: var(--shadow); opacity: 0; pointer-events: none; }
        .nav-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
        .nav-arrow.visible { opacity: 1; pointer-events: auto; }
        .nav-arrow-left { left: 4px; }
        .nav-arrow-right { right: 4px; }

        .sport-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; font-size: 14px; font-weight: 700; color: var(--text-secondary); transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; flex-shrink: 0; }
        .sport-pill:hover { background-color: var(--surface-hover); transform: translateY(-1px); border-color: rgba(255,255,255,0.1); }
        .sport-pill.active { background-color: var(--text-primary); color: var(--bg-color); border-color: var(--text-primary); box-shadow: 0 4px 12px rgba(255,255,255,0.1); }

        /* Premium Hero */
        .hero { padding: 80px 0 48px; text-align: center; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%); pointer-events: none; }
        .hero h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.1; color: #f8fafc; text-shadow: 0 4px 30px rgba(0,0,0,0.6); }
        .hero p { color: var(--text-secondary); max-width: 750px; margin: 0 auto; font-size: 18px; line-height: 1.7; font-weight: 500; }

        /* Professional Grids */
        section { scroll-margin-top: 150px; } /* CRITICAL FIX: Forces native anchor jump to stop 150px below sticky header */
        
        .section-header { margin: 64px 0 28px; display: flex; justify-content: space-between; align-items: center; }
        .section-title { font-size: 28px; font-weight: 900; letter-spacing: -1.2px; display: flex; align-items: center; gap: 12px; }
        .section-title i { color: var(--primary); }
        
        /* FIXED: Changed from .events-grid to match CSS */
        .events-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); 
            gap: 20px; 
            margin-bottom: 20px;
        }
        
        /* Modern Event Cards */
        .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px;  
            background: var(--surface-color); 
            border: 1px solid var(--border-color); 
            border-radius: 16px; 
            overflow: hidden; 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: var(--shadow); 
            position: relative; 
        }
        .event-card:hover { 
            border-color: rgba(59, 130, 246, 0.3); 
            transform: translateY(-4px); 
            background-color: var(--surface-hover); 
        }
        /* SEO-Friendly Show More Hiding */
        .hidden {
            height: 0 !important;
            overflow: hidden !important;
            padding: 0 !important;
            margin: 0 !important;
            border: 0 !important;
        }
        
        .event-header { 
            padding: 14px 20px; 
            border-bottom: 1px solid var(--border-color); 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            font-size: 11px; 
            font-weight: 800; 
            color: var(--text-secondary); 
            text-transform: uppercase; 
            letter-spacing: 0.05em; 
            background: #0b0d12; 
        }
        .event-time { 
            color: var(--text-primary); 
            font-size: 13px; 
            font-weight: 700; 
            background: #1e2230; 
            padding: 4px 10px; 
            border-radius: 6px; 
        }
        
        .event-body { 
            padding: 20px; 
            display: flex; 
            flex-direction: column; 
            gap: 12px; 
        }
        .competitor { 
            display: flex; 
            align-items: center; 
            gap: 12px; 
            font-size: 15px; 
            font-weight: 700; 
            width: 100%; 
            transition: transform 0.2s; 
        }
        .event-card:hover .competitor { 
            transform: translateX(4px); 
        }
        
        .team-logo { 
            width: 32px; 
            height: 32px; 
            object-fit: contain; 
            flex-shrink: 0; 
            background: rgba(255,255,255,0.03); 
            border-radius: 8px; 
            padding: 4px; 
            border: 1px solid var(--border-color); 
        }
        .team-logo-placeholder { 
            width: 32px; 
            height: 32px; 
            background: #1e2230; 
            border-radius: 8px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 11px; 
            font-weight: 800; 
            color: var(--text-secondary); 
            border: 1px solid var(--border-color); 
            flex-shrink: 0; 
        }
        
        details.channel-details-dropdown summary::-webkit-details-marker {
            display: none;
        }
        
        .score-box { 
            margin-left: auto; 
            background: rgba(248, 113, 113, 0.12); 
            border: 1px solid rgba(248, 113, 113, 0.2); 
            color: #f87171; 
            font-weight: 800; 
            padding: 3px 10px; 
            border-radius: 6px; 
            font-size: 14px; 
            min-width: 32px; 
            text-align: center; 
        }
        
        .event-footer { 
            padding: 14px 20px; 
            background: rgba(0,0,0,0.2); 
            border-top: 1px solid var(--border-color); 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            gap: 16px;
            flex-wrap: wrap;
        }
        .tv-network { 
            font-size: 12px; 
            font-weight: 600; 
            color: var(--text-secondary); 
            line-height: 1.2; 
        }
        .btn-cal { 
            display: inline-flex; 
            align-items: center; 
            justify-content: center;
            gap: 6px;
            padding: 6px 10px; 
            height: 32px; 
            border-radius: 8px;
            background: #1e2230; 
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            transition: all 0.2s; 
            text-decoration: none;
            font-size: 11px;
            font-weight: 700;
            white-space: nowrap;
        }
        .btn-cal:hover { 
            background: rgba(255,255,255,0.1); 
            border-color: rgba(255,255,255,0.2);
            color: #fff; 
            transform: translateY(-1px);
        }
        @media (max-width: 400px) {
            .btn-cal span { display: none; } /* Shrink to icon only on tiny phones */
            .btn-cal { padding: 6px 8px; }
        }

        .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
        .btn-view:hover { 
            opacity: 0.9; 
            transform: scale(1.02); 
            background: #3371e3; 
            box-shadow: 0 4px 12px var(--primary-glow); 
        }

        .btn-link {
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            padding: 4px 0;
        }

        .btn-link:hover {
            color: #3b82f6;
            text-decoration: underline;
            gap: 8px;
        }

        /* League Header Styling */
        .league-title-bar { 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            margin-bottom: 24px; 
            padding-bottom: 12px; 
            border-bottom: 1px solid var(--border-color); 
        }
        .league-title-main { 
            display: flex; 
            align-items: center; 
            gap: 12px; 
        }
        .league-title-main i { 
            font-size: 24px; 
            color: var(--primary); 
        }
        .league-title-main h2 { 
            font-size: 22px; 
            font-weight: 900; 
            letter-spacing: -0.02em; 
        }

        .tz-display { 
            background: rgba(255,255,255,0.03); 
            padding: 6px 14px; 
            border-radius: 12px; 
            border: 1px solid var(--border-color); 
            transition: all 0.2s; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
        }
        .tz-display:hover { 
            border-color: var(--primary); 
            background: #1e2230; 
        }
        #tz-select { 
            background: transparent; 
            border: none; 
            color: var(--text-primary); 
            font-weight: 700; 
            font-size: 13px; 
            cursor: pointer; 
            outline: none; 
            appearance: none; 
            padding-right: 4px; 
        }
        #tz-select option { 
            background: #1a1d26; 
            color: #fff; 
        }

        .tz-display { 
            background: rgba(255,255,255,0.03); 
            padding: 6px 14px; 
            border-radius: 12px; 
            border: 1px solid var(--border-color); 
            transition: all 0.2s; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
        }

        .tz-display:hover { 
            border-color: var(--primary); 
            background: #1e2230; 
        }

        /* Power Search */
        .search-container { 
            position: relative; 
            max-width: 700px; 
            margin: 40px auto 0; 
        }
        .search-input { 
            width: 100%; 
            padding: 20px 24px 20px 60px; 
            background: var(--surface-color); 
            border: 1px solid var(--border-color); 
            border-radius: 18px; 
            color: var(--text-primary); 
            font-size: 17px; 
            font-weight: 600; 
            outline: none; 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: var(--shadow); 
        }
        .search-input:focus { 
            border-color: var(--primary); 
            background: var(--surface-hover); 
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15); 
        }
        .search-icon { 
            position: absolute; 
            left: 24px; 
            top: 50%; 
            transform: translateY(-50%); 
            color: var(--primary); 
            font-size: 24px; 
            pointer-events: none; 
        }
        .search-count { 
            position: absolute; 
            right: 24px; 
            top: 50%; 
            transform: translateY(-50%); 
            color: var(--accent-green); 
            font-size: 13px; 
            font-weight: 800; 
            text-transform: uppercase; 
        }

        .live-dot {
            width: 10px;
            height: 10px;
            background: var(--live-red);
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
            vertical-align: middle;
            animation: blink 1.5s infinite;
            filter: drop-shadow(0 0 5px var(--live-red));
        }
        @keyframes blink { 
            0% { opacity: 1; transform: scale(1); } 
            50% { opacity: 0.4; transform: scale(1.2); } 
            100% { opacity: 1; transform: scale(1); } 
        }
        
        /* Badges */
        .badge {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 4px !important;
            padding: 2px 6px !important;
            border-radius: 4px !important;
            font-size: 10px !important;
            font-weight: 800 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            line-height: 1.2 !important;
            height: fit-content !important;
            margin-left: auto !important; /* Forces it hard to the right */
        }
        .live-badge {
            background: rgba(0, 0, 0, 0.4) !important;
            color: #fff !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            white-space: nowrap !important;
        }
        .free-badge {
            background: rgba(34, 197, 94, 0.2) !important;
            color: #22c55e !important;
            border: 1px solid rgba(34, 197, 94, 0.4) !important;
        }

        /* Pro TV Grid */
        .channel-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); 
            gap: 14px; 
            margin-top: 24px; 
        }
        .channel-card {
    min-height: 48px; 
            background: var(--surface-color); 
            border: 1px solid var(--border-color); 
            border-radius: 14px; 
            padding: 24px 12px; 
            text-align: center; 
            transition: all 0.3s ease; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            min-height: 140px; 
            box-shadow: var(--shadow); 
            cursor: pointer;
        }
        .channel-card:hover { 
            border-color: var(--primary); 
            transform: scale(1.03); 
            background: var(--surface-hover); 
        }
        .card-logo-wrap { 
            width: 90px; 
            height: 50px; 
            margin-bottom: 14px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 5px;
        }
        .card-logo-wrap img { 
            width: 100%; 
            height: 100%; 
            object-fit: contain; 
        }
        .channel-name { 
            font-size: 14px; 
            font-weight: 700; 
            color: var(--text-primary); 
        }

        /* Authority Content */
        .guide-module { 
            margin-top: 32px; 
            padding: 32px; 
            background: rgba(255,255,255,0.02); 
            border: 1px solid var(--border-color); 
            border-radius: 20px; 
            transition: all 0.3s;
        }
        .guide-module--hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .guide-module--hero > div {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .guide-module--hero h3 {
            justify-content: center;
            text-align: center;
        }
        .guide-module:hover { 
            background: rgba(255,255,255,0.03); 
            border-color: var(--primary); 
        }
        .guide-module h3 { 
            font-size: 20px; 
            margin-bottom: 16px; 
            font-weight: 800; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .guide-module p { 
            font-size: 15px; 
            color: #d1d5db; 
            line-height: 1.8; 
            font-weight: 500; 
        }

        /* Industry Links */
        .authority-links { 
            margin-top: 64px; 
            border-top: 1px solid var(--border-color); 
            padding-top: 48px; 
        }
        .authority-title { 
            font-size: 14px; 
            font-weight: 800; 
            color: var(--text-secondary); 
            text-transform: uppercase; 
            letter-spacing: 0.1em; 
            text-align: center; 
            margin-bottom: 32px; 
        }
        .resource-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
            gap: 24px; 
            opacity: 0.6; 
            transition: 0.3s; 
        }
        .resource-grid:hover { 
            opacity: 1; 
        }
        .resource-card { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px; 
            text-align: center; 
            padding: 16px; 
            border-radius: 12px; 
            border: 1px solid transparent; 
        }
        .resource-card:hover { 
            border-color: var(--border-color); 
            background: var(--surface-color); 
        }
        .resource-card i { 
            font-size: 24px; 
            color: var(--primary); 
        }
        .resource-card span { 
            font-size: 12px; 
            font-weight: 700; 
            color: var(--text-primary); 
        }

        /* Premium Bottom Bar */
        .mobile-bottom-bar { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            background: rgba(6, 8, 10, 0.9); 
            backdrop-filter: blur(16px); 
            -webkit-backdrop-filter: blur(16px); 
            border-top: 1px solid var(--border-color); 
            display: flex; 
            padding-bottom: var(--safe-bottom); 
            z-index: 1000; 
            box-shadow: 0 -10px 20px rgba(0,0,0,0.5); 
        }
        .mobile-bottom-bar a { 
            flex: 1; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            height: 68px; 
            color: var(--text-secondary); 
            font-size: 13px; 
            font-weight: 700; 
            gap: 6px; 
            border-right: 1px solid var(--border-color); 
        }
        .mobile-bottom-bar a:last-child { 
            border-right: none; 
        }
        .mobile-bottom-bar a i { 
            font-size: 24px; 
            transition: transform 0.2s; 
        }
        .mobile-bottom-bar a.active { 
            color: var(--primary); 
        }
        .mobile-bottom-bar a.active i { 
            transform: translateY(-3px); 
        }

        /* Footer */
        .site-footer { 
            border-top: 1px solid var(--border-color); 
            padding: 64px 0; 
            text-align: center; 
            margin-top: 64px; 
            background: rgba(0,0,0,0.2); 
        }
        .footer-links { 
            display: flex; 
            justify-content: center; 
            gap: 32px; 
            flex-wrap: wrap; 
            margin-bottom: 24px; 
        }
        .footer-links a { 
            color: var(--text-secondary); 
            font-size: 14px; 
            font-weight: 700; 
        }
        .footer-links a:hover { 
            color: var(--primary); 
        }
        .copyright { 
            color: #475569; 
            font-size: 13px; 
            font-weight: 500; 
        }

        /* Accordion Footer */
        .footer-accordion { 
            max-width: 900px; 
            margin: 0 auto 48px; 
            text-align: left; 
        }
        .footer-accordion details { 
            background: var(--surface-color); 
            border: 1px solid var(--border-color); 
            border-radius: 12px; 
            margin-bottom: 12px; 
            overflow: hidden; 
            box-shadow: var(--shadow); 
        }
        .footer-accordion summary { 
            padding: 20px; 
            font-weight: 700; 
            cursor: pointer; 
            list-style: none; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            color: var(--text-primary); 
        }
        .footer-accordion summary::after { 
            content: '\f107'; 
            font-family: 'Phosphor'; 
            font-size: 20px; 
            transition: transform 0.3s; 
        }
        .footer-accordion details[open] summary::after { 
            transform: rotate(180deg); 
        }
        .footer-accordion .accordion-content { 
            padding: 0 20px 20px; 
            color: var(--text-secondary); 
            font-size: 15px; 
            line-height: 1.8; 
            border-top: 1px solid var(--border-color); 
            margin-top: 8px; 
            padding-top: 20px; 
        }

        /* Trust Banner & Items */
        .trust-banner { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 32px; 
            margin: 64px 0; 
            padding: 48px; 
            background: rgba(255,255,255,0.02); 
            border: 1px solid var(--border-color); 
            border-radius: 24px; 
            text-align: center; 
        }
        .trust-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 16px; 
        }
        .trust-item h4 { 
            font-size: 18px; 
            font-weight: 800; 
            color: var(--text-primary); 
        }
        .trust-item p { 
            font-size: 15px; 
            color: var(--text-secondary); 
            line-height: 1.6; 
        }
        .trust-item svg { 
            stroke: var(--primary); 
            filter: drop-shadow(0 0 8px var(--primary-glow)); 
        }

        /* Badge styling */
        .badge.live-badge { 
            background: var(--live-red); 
            color: white; 
            padding: 4px 12px; 
            border-radius: 20px; 
            font-size: 12px; 
            font-weight: 800; 
            display: flex; 
            align-items: center; 
            gap: 6px; 
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); 
        }

        @media (max-width: 768px) {
            .container { padding: 0 16px; }
            .hero { padding: 64px 0 32px; }
            .events-grid { grid-template-columns: 1fr; }
            .resource-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
            .section-header { margin-top: 48px; }
            .guide-module { padding: 24px; }
            .guide-module--hero { text-align: center; }
            .trust-banner { padding: 32px 16px; margin: 40px 0; }
            .sport-pill { padding: 8px 16px; font-size: 13px; }
            .section-title { font-size: 24px; }
            .event-card .competitor { font-size: 14px; }
            .eyebrow-label { font-size: 10px; line-height: 1.6; justify-content: center; flex-direction: column; gap: 2px; }
            .guide-heading { font-size: 20px; text-align: center; }
            .filter-bar { margin: 32px 16px !important; flex-direction: column !important; align-items: stretch !important; padding: 20px !important; }
            .filter-bar > span { justify-content: center; margin-bottom: 4px; }
            .filter-bar > input, .filter-bar > button { width: 100% !important; flex: none !important; }
            .tz-display { justify-content: center; } /* Center timezone on mobile */
        }

        /* === UTILITY CLASSES (replaces inline styles) === */

        /* Accessibility: skip-link */
        .skip-link {
            position: absolute; top: -48px; left: 0;
            background: var(--primary); color: #fff;
            padding: 10px 20px; font-weight: 700; font-size: 14px;
            z-index: 9999; border-radius: 0 0 8px 0; text-decoration: none;
            transition: top 0.2s;
        }
        .skip-link:focus { top: 0; }

        /* Guide module variants */
        .guide-module--hero {
            margin-top: 32px; text-align: left;
            background: rgba(37, 99, 235, 0.03);
            border-color: rgba(37, 99, 235, 0.1);
        }
        .guide-module--mt { margin-top: 16px; }

        /* Eyebrow label above h2 */
        .eyebrow-label {
            font-size: 11px; font-weight: 800; color: var(--accent);
            text-transform: uppercase; letter-spacing: 0.1em;
            margin-bottom: 4px; display: flex; align-items: center; gap: 6px;
            flex-wrap: wrap;
        }
        .sync-label {
            color: var(--text-tertiary); font-weight: 600;
            text-transform: none; letter-spacing: normal;
        }

        /* Guide headings */
        .guide-heading { font-size: 24px; font-weight: 900; color: #fff; line-height: 1.2; margin-top: 4px; }
        .guide-subheading {
            font-size: 20px; margin: 20px 0 16px; font-weight: 800;
            display: flex; align-items: center; gap: 10px; color: var(--text-primary);
        }
        .guide-subheading i { color: var(--primary); }

        /* Event card footer labels */
        .tv-label { font-weight: 700; color: var(--text-primary); }
        .tv-channels-count { font-size: 11px; margin-top: 2px; color: var(--text-secondary); }

        /* Show-more button */
        .show-more-wrap { grid-column: 1 / -1; text-align: center; margin-top: 24px; margin-bottom: 40px; }
        .btn-show-more {
            background: var(--surface-hover);
            border: 1px solid var(--border-color);
            color: #ffffff;
            padding: 14px 32px;
            font-size: 14px;
            font-family: inherit;
            font-weight: 700;
            cursor: pointer;
            border-radius: 12px;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 48px;
        }
        .btn-show-more:hover { background: var(--surface-color); border-color: var(--primary); color: var(--text-primary); }

        /* Section header accent (Live TV) */
        .section-hdr--accent { border-bottom-color: var(--primary); }
        .section-title--primary { border-left-color: var(--primary); }
        .section-subtitle { font-size: 13px; color: var(--text-secondary); font-weight: 600; }

        /* Featured section */
        .section-today { margin-top: 40px; }
        .guide-module--featured {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 41, 59, 0.4) 100%);
            border-left: 4px solid var(--primary);
        }
        .featured-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .featured-title { font-size: 24px; font-weight: 900; letter-spacing: -1px; margin-bottom: 4px; }
        .featured-date { font-size: 14px; opacity: 0.8; }

        /* Event card: league label in header */
        .event-league { display: block; white-space: normal; margin-bottom: 6px; line-height: 1.3; }
        .event-league i { margin-right: 4px; }

        /* MatchPal Style Base (GRID VIEW DEFAULT) */
        .event-body {
            padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; box-sizing: border-box;
        }
        .competitor {
            display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; overflow: hidden;
        }
        .competitor-home { justify-content: flex-start; }
        .competitor-away { flex-direction: row-reverse; text-align: right; justify-content: flex-start; }
        .competitor-info { display: flex; flex-direction: column; gap: 2px; overflow: hidden; min-width: 0; flex: 1; }
        .team-name { font-size: 14px; font-weight: 600; color: #e2e8f0; line-height: 1.2; white-space: normal !important; overflow: visible !important; text-overflow: ellipsis !important; display: block; width: 100%; }
        .team-side { font-size: 10px; color: var(--text-secondary); text-transform: uppercase; font-weight: 800; }
        .score-vs-box { background: rgba(30, 41, 59, 0.8); border: 1px solid rgba(51, 65, 85, 0.5); border-radius: 8px; padding: 4px 10px; color: var(--accent-green); font-size: 13px; font-weight: 800; white-space: nowrap; flex-shrink: 0; }

        /* MatchPal List View Dynamic Styles */
        .events-grid.list-view { grid-template-columns: 1fr; gap: 12px; }
        .events-grid.list-view .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px; 
            display: grid; grid-template-columns: minmax(160px, 22%) 1fr minmax(200px, 260px); gap: 16px;
            align-items: center; padding: 14px 20px;
            background: #11141c; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; box-shadow: none;
            flex-direction: row;
        }
        .events-grid.list-view .event-card:hover {
            border-color: rgba(59,130,246,0.5); background: #171a24; transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
        }
        .events-grid.list-view .event-header {
            border: none; padding: 0; background: transparent; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px;
        }
        .events-grid.list-view .event-time { background: #1e2230; color: #fff; border-radius: 6px; padding: 6px 10px; font-size: 14px; }
        
        .events-grid.list-view .event-body {
            padding: 0; border: none; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-content: center; gap: 16px;
        }
        
        /* Strong reset for grid alignment on desktop to rigidly lock logo sizes and positions */
        .events-grid.list-view .competitor { display: grid !important; align-items: center !important; gap: 14px !important; width: 100% !important; flex: none !important; }
        
        .events-grid.list-view .competitor-home { grid-template-columns: 1fr 28px !important; text-align: right !important; justify-content: stretch !important; }
        .events-grid.list-view .competitor-home .team-logo-placeholder, .events-grid.list-view .competitor-home img { grid-column: 2 !important; grid-row: 1 !important; height: 28px !important; width: 28px !important; object-fit: contain !important; margin: 0 !important; }
        .events-grid.list-view .competitor-home .competitor-info { grid-column: 1 !important; grid-row: 1 !important; align-items: flex-end !important; }
        
        .events-grid.list-view .competitor-away { grid-template-columns: 28px 1fr !important; text-align: left !important; justify-content: stretch !important; }
        .events-grid.list-view .competitor-away .team-logo-placeholder, .events-grid.list-view .competitor-away img { grid-column: 1 !important; grid-row: 1 !important; height: 28px !important; width: 28px !important; object-fit: contain !important; margin: 0 !important; }
        .events-grid.list-view .competitor-away .competitor-info { grid-column: 2 !important; grid-row: 1 !important; align-items: flex-start !important; }
        
        .events-grid.list-view .team-name { font-size: 14px; font-weight: 700; color: #f8fafc; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; white-space: normal !important; line-height: 1.4; word-break: break-word; }
        .events-grid.list-view .team-side { display: none !important; }
        .events-grid.list-view .score-vs-box { font-size: 14px; background: rgba(15,23,42,0.8); border: 1px solid rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 8px; color: #cbd5e1; font-weight: 800; min-width: 48px; text-align: center; margin: 0 10px; }
        
        .events-grid.list-view .event-footer {
            border: none; background: transparent; padding: 0; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; justify-content: flex-end; width: 100%; min-width: unset;
        }
        .events-grid.list-view .tv-network { display: flex; justify-content: flex-end; width: 100%; }
        .events-grid.list-view .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
        .events-grid.list-view .btn-view:hover { background: #2563eb; color: #fff; border-color: #2563eb; box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
        .events-grid.list-view .btn-view i { display: none; }
        
        .date-nav-wrap { display: flex; overflow-x: auto; gap: 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
        .date-nav-wrap::-webkit-scrollbar { display: none; }
        
        /* Removed broken 100% height nav-arrow */
        .nav-arrow:hover { opacity: 1; }

        .date-pill { padding: 8px 16px; background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-secondary); font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
        .date-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
        .view-btn { padding: 10px 18px; background: var(--surface-hover); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-secondary); cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; }
        .view-btn.active { background: rgba(16, 185, 129, 0.1); color: var(--primary); border-color: var(--primary); }

        /* Intermediate Breakpoint for Small Laptops & Landscape Tablets */
        @media (max-width: 1200px) and (min-width: 801px) {
            .events-grid.list-view .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px; 
                grid-template-columns: 140px 1fr 200px;
                gap: 12px;
                padding: 12px 14px;
            }
            .events-grid.list-view .team-name { font-size: 12px; }
            .events-grid.list-view .event-league { font-size: 11px; }

        }

        @media (max-width: 800px) {
            .controls-bar { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; padding: 12px !important; max-width: 100vw; overflow: hidden; box-sizing: border-box; }
            .date-nav-wrap { flex-wrap: nowrap; overflow-x: auto; flex: unset !important; width: 100%; }
            .league-dropdown-wrap, .league-dropdown-wrap select { min-width: 0 !important; width: 100% !important; }
            .view-toggles { width: 100% !important; justify-content: space-between !important; }
            .view-toggles .view-btn { flex: 1 !important; text-align: center; }

            /* Mobile list-view card: stack as column */
            .events-grid.list-view .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px; 
                display: flex !important; flex-direction: column !important;
                border-radius: 12px !important; padding: 14px !important;
                gap: 12px !important; background: #0f1117 !important;
                overflow: hidden !important; width: 100% !important; box-sizing: border-box !important;
            }
            /* Header row: league left, time right */
            .events-grid.list-view .event-header {
                flex-direction: row !important; flex-wrap: wrap !important; justify-content: space-between !important;
                align-items: center !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important;
                padding: 0 0 10px !important; width: 100% !important; margin: 0 !important;
                white-space: normal !important; overflow: visible !important;
            }
            .events-grid.list-view .event-league {
                white-space: normal !important; flex: 1 !important; min-width: 0 !important;
                font-size: 10px !important; overflow: visible !important;
            }
            .events-grid.list-view .event-time {
                flex-shrink: 0 !important; font-size: 12px !important; padding: 4px 8px !important;
            }

            /* Body: 3-col scoreboard (home | VS | away) */
            .events-grid.list-view .event-body {
                display: flex !important; flex-direction: row !important;
                align-items: center !important; justify-content: space-between !important;
                padding: 4px 0 !important; gap: 6px !important;
                border: none !important; width: 100% !important; overflow: hidden !important;
            }

            /* Competitor columns: fixed width so VS box is always centered */
            .events-grid.list-view .competitor {
                width: 38% !important; flex: 0 0 38% !important;
                display: flex !important; flex-direction: column !important;
                align-items: center !important; text-align: center !important;
                justify-content: flex-start !important; gap: 6px !important;
                background: transparent !important; padding: 0 !important;
                min-width: 0 !important; overflow: hidden !important;
            }
            .events-grid.list-view .competitor-home,
            .events-grid.list-view .competitor-away {
                flex-direction: column !important; justify-content: flex-start !important;
                text-align: center !important;
            }
            .events-grid.list-view .competitor-info {
                align-items: center !important; text-align: center !important;
                grid-column: auto !important; grid-row: auto !important;
                width: 100% !important; min-width: 0 !important;
            }

            /* Team logos */
            .events-grid.list-view .team-logo-placeholder,
            .events-grid.list-view .team-logo {
                height: 32px !important; width: 32px !important;
                margin: 0 auto !important; position: static !important;
                grid-column: auto !important; grid-row: auto !important;
                object-fit: contain !important; flex-shrink: 0 !important;
            }

            /* Team name: 2-line clamp, no pixel cut-off */
            .events-grid.list-view .team-name {
                font-size: 12px !important; font-weight: 700 !important;
                white-space: normal !important; overflow: hidden !important;
                display: -webkit-box !important; -webkit-line-clamp: 2 !important;
                -webkit-box-orient: vertical !important;
                line-height: 1.3 !important; width: 100% !important;
                word-break: break-word !important;
            }
            .events-grid.list-view .team-side { display: none !important; }

            /* VS / score box in the centre */
            .events-grid.list-view .score-wrap {
                flex: 0 0 auto !important; align-self: center !important;
                display: flex !important; flex-direction: column !important;
                align-items: center !important; gap: 6px !important;
                margin: 0 2px !important;
            }
            .events-grid.list-view .score-vs-box {
                font-size: 13px !important; background: rgba(30,41,59,0.5) !important;
                border: 1px solid rgba(255,255,255,0.05) !important;
                padding: 4px 8px !important; border-radius: 8px !important;
                flex-shrink: 0 !important; white-space: nowrap !important;
            }


            /* Footer: stacked layout on mobile */
            .events-grid.list-view .event-footer {
                display: flex !important; flex-wrap: wrap !important;
                align-items: center !important; justify-content: space-between !important;
                border-top: 1px solid rgba(255,255,255,0.06) !important;
                padding: 12px 0 0 !important; margin-top: 0 !important;
                width: 100% !important; gap: 12px !important;
            }
            .events-grid.list-view .tv-network { justify-content: flex-start !important; display: flex !important; flex: 1 1 100% !important; margin-bottom: 4px !important; }
            .events-grid.list-view .btn-cal { flex-shrink: 0 !important; }
            .events-grid.list-view .event-footer .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
        }

        /* Extra-small phones (ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤480px): tighten further */
        @media (max-width: 480px) {
            .events-grid.list-view .competitor { width: 36% !important; flex: 0 0 36% !important; }
            .events-grid.list-view .team-name { font-size: 11px !important; }
            .events-grid.list-view .score-vs-box { font-size: 12px !important; padding: 3px 6px !important; }
            .events-grid.list-view .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px;  padding: 12px !important; }
            .event-header { padding: 10px 14px; }
            .event-body { padding: 14px; }
            .event-footer { padding: 12px 14px; flex-wrap: wrap !important; }
            .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
        }

        /* Empty state event card */
        .event-card--empty {
            grid-column: 1 / -1;
            padding: 48px 32px;
            margin-bottom: 24px;
            text-align: center;
            color: var(--text-secondary);
            background: rgba(255,255,255,0.01);
            min-height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
        }
        .empty-icon { font-size: 40px; margin-bottom: 16px; display: block; color: rgba(255,255,255,0.05); }

        .channel-dropdown summary::-webkit-details-marker {
            display: none;
        }
        .channel-dropdown[open] summary {
            background: rgba(255,255,255,0.1) !important;
            color: #fff !important;
        }
        .channel-dropdown[open] summary .ph-caret-down {
            transform: rotate(180deg);
        }

        /* Editorial content section */
        .editorial-section { margin: 40px 0 20px; display: flex; flex-direction: column; gap: 0; }
        .editorial-block { padding: 32px 0; border-bottom: 1px solid var(--border-color); }
        .editorial-block:last-child { border-bottom: none; }
        .editorial-block h2 { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; letter-spacing: -0.5px; }
        .editorial-block p { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 14px; max-width: 860px; }
        .editorial-block p:last-child { margin-bottom: 0; }
        @media (max-width: 768px) {
            .editorial-block h2 { font-size: 18px; }
            .editorial-block { padding: 24px 0; }
        }
        @media (max-width: 500px) {
            .event-footer { flex-direction: row; align-items: center; gap: 8px; }
            .event-footer .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
        }

        /* Force hiding elements regardless of UI responsive overrides - Must have high specificity to beat list-view overrides */
        body .events-grid .event-card.date-hidden,
        .date-hidden { display: none !important; }
    
/* --- STYLES MOVED FROM game.php --- */

        /* === GAME PAGE STYLES === */

.match-header-sticky {
            position: sticky;
            top: 10px;
            z-index: 900;
            background: rgba(11, 14, 17, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            max-width: 1200px;
            margin: 0 auto 20px auto;
            border-radius: 16px;
        }

        .match-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .sb-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
        }

        .sb-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            aspect-ratio: 1/1;
            margin-bottom: 8px;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
        }

        .sb-name {
            font-weight: 700;
            font-size: 18px;
            line-height: 1.2;
        }

        .sb-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            min-width: 140px;
        }

        .sb-score {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 4px;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .sb-time {
            background: var(--bg-elevated);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            border: 1px solid var(--border-color);
        }

        .sb-live-badge {
            background: #ef4444;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
        }

        .live-dot {
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        .watch-action-btn {
            background: linear-gradient(135deg, var(--accent) 0%, #2563eb 100%);
            color: white;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: transform 0.2s;
            margin-top: 5px;
        }

        .watch-action-btn:hover {
            transform: scale(1.05);
        }

        /* Breadcrumbs */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text-tertiary);
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb i {
            font-size: 10px;
            opacity: 0.5;
        }

        /* --- Player Section --- */
        .player-section { margin-bottom: 30px; }
        .s2w-player-wrapper { position: relative; width: 100%; max-width: 900px; margin: 0 auto 3rem auto; aspect-ratio: 16 / 9; }
        .s2w-video-container {
            position: relative; width: 100%; height: 100%; background: #000;
            overflow: hidden; border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0,0,0,0.2);
            border: 1px solid var(--border-color); z-index: 5;
        }
        .s2w-screen {
            position: absolute; top:0; left:0; right:0; bottom:0;
            width: 100%; height: 100%; object-fit: cover; object-position: center;
            transition: filter 0.3s ease; z-index: 1; 
        }
        .s2w-video-container.paused .s2w-screen { filter: blur(12px) brightness(0.4); transform: scale(1.05); }

        .player-overlay { position: absolute; width: 100%; z-index: 10; pointer-events: none; }
        .top-overlay { top: 0; padding: 1.5rem; display: flex; justify-content: space-between; background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent); }
        .btm-overlay { bottom: 0; height: 60px; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); display: flex; align-items: center; padding: 0 1.5rem; }

        .badge-live {
            background: var(--accent); color: #fff; padding: 5px 10px; border-radius: 6px;
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
            display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
        }
        .badge-live::before { content:''; width:6px; height:6px; background:#fff; border-radius:50%; animation: blink 2s infinite; }
        @keyframes blink { 0% { opacity:1; } 50% { opacity:0.3; } 100% { opacity:1; } }

        .badge-viewers {
            font-size: 0.8rem; color: #fff; font-weight: 600; display: flex; align-items: center; gap: 6px;
            background: rgba(15, 23, 42, 0.6); padding: 6px 12px; border-radius: 30px;
            backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); pointer-events: auto;
        }

        .center-play {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            z-index: 20; width: auto; height: auto; padding: 14px 28px; background: rgba(30, 41, 59, 0.9);
            backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 30px; white-space: nowrap;
            display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; cursor: pointer;
            transition: all 0.2s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.5); color: #fff;
        }
        .center-play i { font-size: 20px; margin-right: 8px; margin-left: 0; color: var(--accent); }
        .center-play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--accent); border-color: var(--accent); box-shadow: 0 0 25px rgba(59, 130, 246, 0.6); }

        .player-loader-wrap { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none; z-index: 35; }
        .loading-spinner-svg { animation: spin 1s linear infinite; width: 50px; height: 50px; stroke: var(--accent); fill: none; stroke-width: 4; stroke-linecap: round; }

        .player-controls {
            position: absolute; bottom: 0; left: 0; right: 0; z-index: 15;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            padding: 20px 20px 10px 20px; display: flex; flex-direction: column; gap: 8px;
        }
        .proc-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; overflow: hidden; }
        .proc-fill { width: 0%; height: 100%; background: var(--live-red); transition: width 0.5s; }
        .ctrl-row { display: flex; justify-content: space-between; align-items: center; }
        .ctrl-left, .ctrl-right { display: flex; align-items: center; gap: 16px; color: #fff; font-size: 18px; }
        .ctrl-time { font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
        .ctrl-time::before { content: ''; width: 6px; height: 6px; background: var(--live-red); border-radius: 50%; display: inline-block; }

        .ios-alert-backdrop {
            display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 100;
            background: rgba(0, 0, 0, 0.85); align-items: center; justify-content: center; backdrop-filter: blur(8px);
        }
        .ios-alert-box {
            width: 320px; max-width: 90%; background: rgba(15, 17, 23, 0.98); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
            text-align: center; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
            transform: scale(0.95); animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; pointer-events: auto;
            max-height: 95%; display: flex; flex-direction: column;
        }
        .ios-content { padding: 20px; overflow-y: auto; flex: 1; }
        .ios-icon { width: 44px; height: 44px; background: rgba(239, 68, 68, 0.1); color: #ef4444; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 12px auto; }
        .ios-title { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
        .ios-message { color: #94a3b8; font-size: 13px; line-height: 1.4; }
        
        .ios-actions { border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; background: rgba(255,255,255,0.02); flex-shrink: 0; }
        .ios-btn { 
            background: transparent; border: none; padding: 14px 0; font-size: 14px; 
            color: var(--accent); font-weight: 600; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
            transition: all 0.2s;
        }
        .ios-btn:hover { background: #1e2230; }
        .ios-btn.proceed-btn { color: #fff; background: var(--accent); }
        .ios-btn.proceed-btn:hover { background: #2563eb; }

        @media (max-width: 480px) {
            .ios-alert-box { width: 280px; max-height: 92%; }
            .ios-content { padding: 12px 15px; }
            .ios-icon { display: none; }
            .ios-title { font-size: 15px; margin-bottom: 4px; }
            .ios-message { font-size: 11px; line-height: 1.3; }
            .ios-btn { padding: 10px 0; font-size: 13px; }
            .ios-actions { background: rgba(255,255,255,0.03); }
        }

        @keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

        .matchup-bar {
            background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px;
            padding: 1.5rem; margin-top: 2rem; margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }
        .team-box-player { text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; }
        .team-logo-player { width: 60px; height: 60px; object-fit: contain; margin-bottom: 10px; filter: drop-shadow(0 4px 4px rgba(0,0,0,0.5)); aspect-ratio: 1/1; }
        .team-name-player { color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.3; }
        .vs-txt { color: var(--text-tertiary); font-weight: 800; font-size: 1.2rem; margin: 0 1rem; font-style: italic; opacity: 0.5; }

        .feature-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 30px; min-height: 58px; }
        .feature { background: var(--bg-card); border: 1px solid var(--border-color); padding: 1rem; border-radius: 8px; display: flex; align-items: center; gap: 12px; transition: 0.2s; }
        .feature:hover { border-color: var(--primary); transform: translateY(-2px); }
        .f-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.03); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); border: 1px solid var(--border-color); }
        .f-txt span { display: block; font-weight: 600; color: #fff; font-size: 0.9rem; }
        .f-txt small { display: block; color: var(--text-secondary); font-size: 0.75rem; }

        /* Content cards */
        .seo-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .seo-box h1 {
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            margin-bottom: 15px;
        }

        .match-meta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin: 20px 0;
            padding: 15px;
            background: var(--bg-elevated);
            border-radius: 12px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-primary);
        }

        .official-link-box {
            background: var(--bg-elevated);
            border: 1px solid var(--border-color);
            padding: 15px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .official-link-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .official-icon {
            width: 40px;
            height: 40px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .official-btn {
            background: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
        }

        .lineups-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        .team-lineup {
            background: var(--bg-elevated);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid var(--border-color);
        }

        .lineup-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            font-weight: 700;
        }

        .player-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-size: 13px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .player-row .p-num {
            width: 24px;
            color: var(--text-tertiary);
            font-weight: 600;
        }

        .channel-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-color);
            text-decoration: none;
            color: var(--text-primary);
            transition: background 0.2s;
        }

        .channel-list-item:hover {
            background: var(--bg-elevated);
            padding-left: 20px;
            color: var(--accent);
        }

        .channel-list-item img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .standings-table th {
            text-align: left;
            color: var(--text-tertiary);
            padding: 8px;
            border-bottom: 1px solid var(--border-color);
        }

        .standings-table td {
            padding: 8px;
            border-bottom: 1px solid var(--border-color);
        }

        .standings-row.highlight {
            background: rgba(59, 130, 246, 0.1);
            font-weight: 700;
            color: var(--accent);
        }

        /* Channel dropdown */
        .global-channels-menu {
            position: absolute;
            background: var(--bg-elevated);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            min-width: 320px;
            z-index: 1000000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.15s ease;
            max-height: 450px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .global-channels-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 999990;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .dropdown-backdrop.active {
            display: block;
            opacity: 1;
        }

        .channel-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            text-decoration: none;
            color: var(--text-primary);
            border-bottom: 1px solid var(--border-color);
            transition: background 0.2s;
        }

        .channel-item:hover {
            background: var(--bg-card);
        }

        .channel-item-logo {
            width: 30px;
            height: 30px;
            object-fit: contain;
            background: var(--bg-card);
            padding: 4px;
            border-radius: 6px;
        }

        .mobile-close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--bg-card);
            border: none;
            color: var(--text-secondary);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* Sidebar styles */
        .sidebar {
            width: 100%;
        }

        .side-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .side-card-header {
            padding: 15px 20px;
            font-weight: 700;
            font-size: 16px;
            border-bottom: 1px solid var(--border-color);
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .side-card-header i {
            color: var(--accent);
        }

        .faq-section {
            margin-top: 40px;
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            margin-bottom: 20px;
        }

        .faq-section h2 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 20px;
        }

        .faq-accordion {
            background: var(--bg-card); 
            border: 1px solid var(--border-color);
            border-radius: 12px; 
            margin-bottom: 12px; 
            overflow: hidden;
            transition: all 0.2s ease;
        }
        .faq-accordion summary {
            padding: 18px 20px; 
            font-weight: 700; 
            color: #fff; 
            font-size: 1.05rem;
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            list-style: none; 
            user-select: none;
        }
        .faq-accordion summary::-webkit-details-marker { display: none; }
        .faq-accordion summary::after { 
            content: '+'; 
            font-size: 1.4rem; 
            font-weight: 400;
            transition: transform 0.2s; 
            color: var(--accent); 
        }
        .faq-accordion[open] summary::after { 
            content: 'âˆ’'; 
            transform: rotate(180deg); 
        }
        .faq-accordion[open] { 
            border-color: var(--accent); 
        }
        .faq-content {
            padding: 0 20px 20px; 
            color: #94a3b8; 
            line-height: 1.6; 
            font-size: 0.95rem; 
            border-top: 1px solid transparent;
        }
        .faq-accordion[open] .faq-content { 
            border-top-color: var(--border-color); 
            padding-top: 15px; 
        }

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

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 1024px) {
            .layout {
                grid-template-columns: minmax(0, 1fr) !important;
                gap: 20px;
                padding: 20px 16px;
            }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            html, body { overflow-x: hidden; width: 100%; max-width: 100vw; box-sizing: border-box; }
            * { box-sizing: inherit; }
            main, aside, section, div { min-width: 0; }
            .layout { padding: 16px; margin: 0; width: 100%; overflow-x: hidden; }

            .match-header-content {
                padding: 0 10px;
                gap: 8px;
                overflow-x: hidden;
            }
            .sb-team { min-width: 0; word-break: break-word; }
            .sb-logo { width: 36px !important; height: 36px !important; }
            .sb-name { font-size: 13px !important; word-break: break-word; line-height: 1.2; }
            .sb-score { font-size: 24px !important; }

            .global-channels-menu {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                transform: translateY(100%);
                transition: transform 0.3s;
                border-radius: 20px 20px 0 0;
                max-height: 80vh;
            }

            .global-channels-menu.active {
                transform: translateY(0);
            }

            .lineups-container {
                grid-template-columns: 1fr;
            }

            .official-link-box {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }

            .official-link-left {
                flex-direction: column;
            }

            .official-btn {
                justify-content: center;
            }

            .geo-message-overlay {
                padding: 20px;
            }

            .geo-icon {
                font-size: 32px;
                margin-bottom: 8px;
            }

            .geo-title {
                font-size: 18px;
                margin-bottom: 5px;
            }

            .geo-desc {
                font-size: 13px;
                margin-bottom: 15px;
                max-width: 100%;
            }

            .geo-btn-primary {
                padding: 10px 20px;
                font-size: 14px;
            }

            .matchup-bar {
                padding: 1rem;
                flex-direction: row;
                gap: 10px;
            }
            .team-logo-player { width: 44px; height: 44px; }
            .team-name-player { font-size: 0.85rem; }
            .vs-txt { font-size: 1rem; margin: 0 0.5rem; }

            .feature-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            .feature { padding: 0.75rem; }
        }

        body.modal-open {
            overflow: hidden;
        }
    

/* --- STYLES MOVED FROM watch.php --- */


        body {
            background: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.6;
            padding-bottom: calc(70px + var(--safe-bottom));
            overflow-x: clip;
            width: 100%;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(67, 56, 202, .1) 0%, transparent 45%);
            pointer-events: none;
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Breadcrumbs */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text-tertiary);
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: color .2s;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb i {
            font-size: 10px;
            opacity: .5;
        }

        /* Layout */
        .layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 360px;
            gap: 24px;
            margin-top: 24px;
            align-items: start;
        }

        /* Player */
        .player-section {
            margin-bottom: 24px;
        }

        .s2w-player-wrapper {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto 1.5rem auto;
        }

        .s2w-video-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: #000;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .5), 0 0 15px rgba(0, 0, 0, .2);
            border: 1px solid var(--border-color);
            z-index: 5;
        }

        .s2w-screen {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 100%;
            transition: filter .3s ease;
            z-index: 1;
        }

        .s2w-video-container.paused .s2w-screen {
            filter: blur(12px) brightness(.4);
            transform: scale(1.05);
        }

        .player-overlay {
            position: absolute;
            width: 100%;
            z-index: 10;
            pointer-events: none;
        }

        .top-overlay {
            top: 0;
            padding: 1.2rem 1.5rem;
            display: flex;
            justify-content: space-between;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent);
        }

        .btm-overlay {
            bottom: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(0, 0, 0, .95), transparent);
            display: flex;
            align-items: center;
            padding: 0 1.5rem;
        }

        .badge-live {
            background: var(--live-red);
            color: #fff;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: .75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .badge-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: .3;
            }

            100% {
                opacity: 1;
            }
        }

        .badge-viewers {
            font-size: .8rem;
            color: #fff;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(15, 23, 42, .6);
            padding: 6px 12px;
            border-radius: 30px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .1);
            pointer-events: auto;
        }

        .center-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 20;
            width: auto;
            height: auto;
            padding: 14px 28px;
            background: rgba(30, 41, 59, .9);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 30px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all .2s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
            color: #fff;
        }

        .center-play i {
            font-size: 20px;
            margin-right: 8px;
            margin-left: 0;
            color: var(--accent);
        }

        .center-play:hover {
            transform: translate(-50%, -50%) scale(1.08);
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 0 25px rgba(59, 130, 246, .6);
        }

        .player-loader-wrap {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
            z-index: 35;
        }

        .loading-spinner-svg {
            animation: spin 1s linear infinite;
            width: 50px;
            height: 50px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 4;
            stroke-linecap: round;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .player-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 15;
            background: linear-gradient(to top, rgba(0, 0, 0, .95), transparent);
            padding: 20px 20px 10px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .proc-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, .3);
            border-radius: 2px;
            overflow: hidden;
        }

        .proc-fill {
            width: 100%;
            height: 100%;
            background: var(--live-red);
        }

        .ctrl-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ctrl-left,
        .ctrl-right {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #fff;
            font-size: 18px;
        }

        .ctrl-time {
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ctrl-time::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--live-red);
            border-radius: 50%;
            display: inline-block;
        }

        /* IOS Alert Modal */
        .ios-alert-backdrop {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 100;
            background: rgba(0, 0, 0, .85);
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
        }

        .ios-alert-box {
            width: 320px;
            max-width: 90%;
            background: rgba(15, 17, 23, .98);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 16px;
            text-align: center;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .8);
            animation: popIn .3s cubic-bezier(.175, .885, .32, 1.275) forwards;
            pointer-events: auto;
            max-height: 95%;
            display: flex;
            flex-direction: column;
        }

        .ios-content {
            padding: 20px;
            overflow-y: auto;
            flex: 1;
        }

        .ios-icon {
            width: 44px;
            height: 44px;
            background: rgba(239, 68, 68, .1);
            color: #ef4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 12px auto;
        }

        .ios-title {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .ios-message {
            color: #94a3b8;
            font-size: 13px;
            line-height: 1.4;
        }

        .ios-actions {
            border-top: 1px solid rgba(255, 255, 255, .06);
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, .02);
            flex-shrink: 0;
        }

        .ios-btn {
            background: transparent;
            border: none;
            padding: 14px 0;
            font-size: 14px;
            color: var(--accent);
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all .2s;
        }

        .ios-btn:hover {
            background: rgba(255, 255, 255, .05);
        }

        .ios-btn.proceed-btn {
            color: #fff;
            background: var(--accent);
        }

        .ios-btn.proceed-btn:hover {
            background: #2563eb;
        }

        @keyframes popIn {
            from {
                transform: scale(.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Feature bar */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: .8rem;
            margin: 1rem 0 1.5rem;
        }

        .feature {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: .9rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: .2s;
        }

        .feature:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .f-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, .03);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            border: 1px solid var(--border-color);
            flex-shrink: 0;
        }

        .f-txt span {
            display: block;
            font-weight: 600;
            color: #fff;
            font-size: .85rem;
        }

        .f-txt small {
            display: block;
            color: var(--text-secondary);
            font-size: .72rem;
        }

        /* Channel header hero */
        .ch-hero {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: var(--shadow);
        }

        .ch-logo-box {
            width: 90px;
            height: 90px;
            flex-shrink: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
        }

        .ch-logo-box img {
            max-width: 70px;
            max-height: 70px;
            object-fit: contain;
        }

        .ch-logo-box i {
            font-size: 2.4rem;
            color: var(--primary);
        }

        .ch-info {
            flex: 1;
        }

        .ch-badges {
            display: flex;
            gap: 6px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .badge {
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .badge-live-sm {
            background: rgba(239, 68, 68, .15);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, .3);
        }

        .badge-cat {
            background: rgba(37, 99, 235, .1);
            color: #93c5fd;
            border: 1px solid rgba(37, 99, 235, .2);
        }

        .badge-loc {
            background: rgba(255, 255, 255, .04);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        .ch-title {
            font-size: clamp(20px, 5vw, 30px);
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.25;
            margin-bottom: 8px;
            padding-bottom: 4px; /* Stop descender clipping */
            word-wrap: break-word;
            color: #f8fafc;
        }

        .ch-meta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 600;
        }

        .ch-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ch-meta i {
            color: var(--primary);
        }

        /* Sidebar / side cards */
        .sidebar {}

        .side-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .side-card-header {
            padding: 14px 18px;
            font-weight: 700;
            font-size: 15px;
            border-bottom: 1px solid var(--border-color);
            background: rgba(0, 0, 0, .2);
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-primary);
        }

        .side-card-header i {
            color: var(--accent);
        }

        /* Schedule */
        .sched-item {
            padding: 14px 18px;
            border-bottom: 1px solid var(--border-color);
            text-decoration: none;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            transition: background .15s;
        }

        .sched-item:last-child {
            border-bottom: none;
        }

        .sched-item:hover {
            background: rgba(255, 255, 255, .03);
        }

        .sched-time {
            min-width: 58px;
            font-size: 13px;
            font-weight: 800;
            color: var(--accent);
            text-align: center;
        }

        .sched-time small {
            display: block;
            font-size: 10px;
            font-weight: 500;
            color: var(--text-tertiary);
        }

        .sched-info {
            flex: 1;
        }

        .sched-match {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 3px;
        }

        .sched-league {
            font-size: 11px;
            color: var(--text-tertiary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .05em;
        }

        .sched-live {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            background: rgba(239, 68, 68, .15);
            color: #ef4444;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 800;
        }

        .no-sched {
            padding: 28px 18px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 13px;
        }

        /* Related channels */
        .rel-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            border-bottom: 1px solid var(--border-color);
            text-decoration: none;
            color: var(--text-secondary);
            transition: background .2s;
        }

        .rel-item:last-child {
            border-bottom: none;
        }

        .rel-item:hover {
            background: var(--surface-color);
            color: var(--text-primary);
        }

        .rel-logo {
            width: 38px;
            height: 38px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            flex-shrink: 0;
        }

        .rel-logo img {
            max-width: 28px;
            max-height: 28px;
            object-fit: contain;
        }

        .rel-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
            flex: 1;
        }

        /* Broadcast Guide Article */
        .channel-article {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--primary);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
        }
        .channel-article h2 {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .channel-article h2 i { color: var(--primary); font-size: 20px; }
        .channel-article-body {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }
        .channel-article-body p { margin-bottom: 12px; }
        .channel-article-body p:last-child { margin-bottom: 0; }
        .channel-article-body strong { color: var(--text-primary); font-weight: 700; }
        .channel-article-body a { color: var(--primary); font-weight: 600; text-decoration: none; }
        .channel-article-body a:hover { text-decoration: underline; }

        /* FAQ */
        .faq-section {
            margin-top: 30px;
            border-top: 1px solid var(--border-color);
            padding-top: 24px;
            margin-bottom: 20px;
        }

        .faq-section h2 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 16px;
            font-weight: 800;
        }

        .faq-accordion {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 10px;
            overflow: hidden;
            transition: all .2s ease;
        }

        .faq-accordion summary {
            padding: 16px 18px;
            font-weight: 700;
            color: #fff;
            font-size: .95rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            user-select: none;
        }

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

        .faq-accordion summary::after {
            content: '+';
            font-size: 1.3rem;
            font-weight: 400;
            transition: transform .2s;
            color: var(--accent);
        }

        .faq-accordion[open] summary::after {
            content: 'âˆ’';
        }

        .faq-accordion[open] {
            border-color: var(--accent);
        }

        .faq-content {
            padding: 0 18px 18px;
            color: #94a3b8;
            line-height: 1.65;
            font-size: .9rem;
            border-top: 1px solid var(--border-color);
            padding-top: 14px;
        }

        /* Trust / VPN CTA */
        .vpn-cta {
            background: linear-gradient(135deg, rgba(37, 99, 235, .15), rgba(67, 56, 202, .15));
            border: 1px solid rgba(37, 99, 235, .3);
            border-radius: 14px;
            padding: 20px 22px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .vpn-cta i {
            font-size: 2rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .vpn-cta-txt strong {
            display: block;
            font-size: 15px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 3px;
        }

        .vpn-cta-txt span {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .vpn-btn {
            margin-left: auto;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), #1e40af);
            color: #fff;
            padding: 10px 18px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(37, 99, 235, .4);
            transition: all .2s;
        }

        .vpn-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(37, 99, 235, .55);
        }

        /* Mobile */
        @media(max-width:1024px) {
            .layout {
                grid-template-columns: minmax(0, 1fr);
            }

            .sidebar {
                order: 2;
            }

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

        @media(max-width:768px) {
            html, body { overflow-x: hidden; width: 100%; max-width: 100vw; box-sizing: border-box; }
            * { box-sizing: inherit; }
            main, aside, section, div { min-width: 0; }
            
            .container { padding: 0 16px; width: 100%; overflow-x: hidden; }
            .layout { 
                margin-top: 16px; gap: 16px; 
                width: 100%; 
                max-width: 100%; 
                overflow-x: hidden; 
            }
            #main-content {
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .ch-hero {
                flex-direction: column;
                text-align: center;
                padding: 20px 16px;
                margin-bottom: 16px;
            }

            .ch-title {
                font-size: 24px;
            }

            .ch-badges {
                justify-content: center;
            }

            .ch-meta {
                justify-content: center;
            }

            .feature-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .channel-article {
                max-width: 100%;
                min-width: 0;
                overflow: hidden;
                padding: 16px !important;
                box-sizing: border-box;
            }

            .channel-article table {
                display: block;
                width: 100%;
                max-width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .vpn-cta {
                flex-direction: column;
                text-align: center;
            }

            .vpn-btn {
                margin: 0;
                width: 100%;
                justify-content: center;
                white-space: normal;
                text-align: center;
                padding: 12px;
            }
        }

        body.modal-open {
            overflow: hidden;
        }
    


/* --- STYLES MOVED FROM tv-channels\country.php --- */

        :root{--bg-color:#06080a;--surface-color:#12141c;--surface-hover:#1b1f29;--text-primary:#f8fafc;--text-secondary:#94a3b8;--border-color:rgba(255,255,255,0.06);--primary:#2563eb;--primary-glow:rgba(37,99,235,0.4);--safe-bottom:env(safe-area-inset-bottom,0px);--shadow:0 10px 15px -3px rgba(0,0,0,0.4);--bg-card:#0f1117;}
        *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;}

        body{background-color:var(--bg-color);color:var(--text-primary);padding-bottom:calc(70px + var(--safe-bottom));line-height:1.6;font-size:16px;}
        a{text-decoration:none;color:inherit;transition:all 0.2s;}
        .s2w-page{max-width:1280px;margin:0 auto;padding:0 20px 60px;}
        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}
        .breadcrumb a{color:var(--text-secondary);display:flex;align-items:center;gap:4px;}.breadcrumb a:hover{color:var(--primary);}
        .hero{padding:52px 0 36px;text-align:center;position:relative;overflow:hidden;}
        .hero::before{content:'';position:absolute;top:-80px;left:50%;transform:translateX(-50%);width:600px;height:300px;background:radial-gradient(circle,rgba(59,130,246,0.1) 0%,transparent 70%);pointer-events:none;}
        .hero-flag{font-size:3.5rem;margin-bottom:14px;line-height:1;}
        .hero-flag .fi{border-radius:6px;box-shadow:0 4px 12px rgba(0,0,0,0.4);}
        .hero h1{font-size:clamp(24px,4.5vw,46px);font-weight:900;letter-spacing:-1.5px;margin-bottom:10px;line-height:1.1;color:#f8fafc;}
        .hero p{color:var(--text-secondary);max-width:640px;margin:0 auto 22px;font-size:16px;line-height:1.7;font-weight:500;}
        .hero-stats{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}
        .stat-pill{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:12px;font-size:13px;font-weight:700;color:var(--text-secondary);box-shadow:var(--shadow);}
        .stat-pill strong{color:var(--text-primary);}.stat-pill i{color:var(--primary);}
        .country-meta{display:flex;justify-content:center;align-items:center;gap:20px;flex-wrap:wrap;margin-bottom:28px;padding-bottom:24px;border-bottom:1px solid var(--border-color);}
        .meta-item{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text-secondary);font-weight:600;}
        .meta-item i{color:var(--primary);}
        .type-strip{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-bottom:22px;}
        .type-chip{padding:5px 12px;border-radius:20px;font-size:12px;font-weight:700;background:rgba(37,99,235,0.08);border:1px solid rgba(37,99,235,0.18);color:#93c5fd;display:flex;align-items:center;gap:5px;}
        .search-wrap{position:relative;margin-bottom:20px;}
        .search-wrap input{width:100%;padding:13px 20px 13px 46px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;color:var(--text-primary);font-size:15px;font-family:inherit;outline:none;transition:border-color 0.2s;}
        .search-wrap input:focus{border-color:var(--primary);}
        .search-wrap input::placeholder{color:var(--text-secondary);}
        .search-wrap i{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:var(--primary);font-size:1.1rem;pointer-events:none;}
        .section-header{margin:40px 0 14px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;}
        .section-title{font-size:20px;font-weight:900;letter-spacing:-0.5px;display:flex;align-items:center;gap:8px;}
        .section-title i{color:var(--primary);}
        .section-count{font-size:13px;color:var(--text-secondary);font-weight:600;}
        .channel-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:14px;}
        .channel-card {
    min-height: 48px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:18px 14px;text-decoration:none;display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);box-shadow:var(--shadow);}
        .channel-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-4px);background:var(--surface-hover);}
        .ch-logo-wrap{width:72px;height:72px;background:rgba(255,255,255,0.04);border-radius:50%;display:flex;align-items:center;justify-content:center;padding:12px;border:1px solid var(--border-color);transition:all 0.2s;}
        .channel-card:hover .ch-logo-wrap{border-color:var(--primary);box-shadow:0 0 14px var(--primary-glow);}
        .ch-logo-wrap img{max-width:48px;max-height:48px;object-fit:contain;}
        .ch-name{font-size:13px;font-weight:700;color:var(--text-primary);line-height:1.3;}
        .ch-lang{font-size:11px;color:var(--text-secondary);background:rgba(255,255,255,0.04);padding:3px 8px;border-radius:10px;}
        .ch-type{font-size:10px;color:var(--primary);font-weight:700;text-transform:uppercase;letter-spacing:0.05em;margin-top:auto;}
        .no-results-msg{display:none;text-align:center;padding:52px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);}
        .empty-state{text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);margin:20px 0;}
        .services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;}
        .service-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:18px;display:flex;align-items:center;gap:12px;transition:all 0.2s;text-decoration:none;}
        .service-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-2px);}
        .svc-logo{height:44px;background:var(--bg-card);border-radius:8px;display:flex;align-items:center;justify-content:center;padding:6px 10px;flex-shrink:0;min-width:72px;}
        .svc-logo img{max-height:32px;max-width:60px;object-fit:contain;}
        .svc-name{font-size:14px;font-weight:700;color:var(--text-primary);}
        .svc-price{font-size:12px;color:var(--primary);font-weight:600;}
        .similar-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:12px;}
        .similar-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:16px;display:flex;align-items:center;gap:12px;text-decoration:none;transition:all 0.2s;}
        .similar-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-2px);}
        .sim-flag{font-size:2rem;flex-shrink:0;}.sim-flag .fi{border-radius:3px;}
        .sim-name{font-size:14px;font-weight:700;color:var(--text-primary);}
        .sim-count{font-size:12px;color:var(--text-secondary);margin-top:1px;}
        .guide-module{padding:28px 32px;background:rgba(255,255,255,0.02);border:1px solid var(--border-color);border-radius:20px;transition:all 0.3s;margin-top:0;}
        .guide-module:hover{border-color:var(--primary);}
        .guide-module h2{font-size:19px;font-weight:800;color:var(--text-primary);margin-bottom:12px;display:flex;align-items:center;gap:10px;}
        .guide-module h2 i{color:var(--primary);}
        .guide-module p{font-size:15px;color:var(--text-secondary);line-height:1.8;margin-bottom:10px;max-width:none;}
        .guide-module p:last-child{margin-bottom:0;}
        @media(max-width:768px){.channel-grid{grid-template-columns:repeat(2,1fr);gap:10px;}.country-meta{gap:12px;}.services-grid{grid-template-columns:1fr;}.similar-grid{grid-template-columns:repeat(2,1fr);}}
        @media(max-width:440px){.channel-grid{grid-template-columns:1fr;}.similar-grid{grid-template-columns:1fr;}}
    

/* --- STYLES MOVED FROM tv-channels\index.php --- */

        :root{--bg-color:#06080a;--surface-color:#12141c;--surface-hover:#1b1f29;--text-primary:#f8fafc;--text-secondary:#94a3b8;--border-color:rgba(255,255,255,0.06);--primary:#2563eb;--primary-glow:rgba(37,99,235,0.4);--safe-bottom:env(safe-area-inset-bottom,0px);--shadow:0 10px 15px -3px rgba(0,0,0,0.4);--bg-card:#0f1117;}
        *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;}
        body{background-color:var(--bg-color);color:var(--text-primary);padding-bottom:calc(70px + var(--safe-bottom));line-height:1.6;font-size:16px;}
        a{text-decoration:none;color:inherit;transition:all 0.2s;}
        
        .s2w-page{max-width:1280px;margin:0 auto;padding:0 20px 60px;}
        
        /* Premium Hero Area */
        .hero-ux {
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .hero-ux::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }
        .hero-ux h1 {
            font-size: clamp(32px, 6vw, 56px);
            font-weight: 900;
            letter-spacing: -0.04em;
            margin-bottom: 20px;
            line-height: 1.1;
            color: #f8fafc;
        }
        .hero-ux p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 18px;
            line-height: 1.6;
        }

        /* Omnibox Search UX */
        .omnibox-wrapper {
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }
        .omnibox {
            display: flex;
            align-items: center;
            background: rgba(18, 20, 28, 0.8);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
        }
        .omnibox:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 30px var(--primary-glow), 0 20px 40px rgba(0,0,0,0.5);
            transform: scale(1.02);
            z-index: 100;
        }
        .omnibox i {
            font-size: 24px;
            color: var(--text-secondary);
            margin: 0 16px;
        }
        .omnibox:focus-within i {
            color: var(--primary);
        }
        .omnibox input {
            flex: 1;
            min-width: 0;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 500;
            padding: 16px 10px;
            outline: none;
            text-overflow: ellipsis;
        }
        .omnibox input::placeholder {
            color: var(--text-secondary);
        }
        .omnibox button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 14px;
            padding: 0 28px;
            height: 52px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .omnibox button:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        /* UX Network Wall */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .section-tag i { color: var(--primary); font-size: 16px; }
        
        .network-wall {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 80px;
        }
        .network-card {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        .network-card::before {
            content:'';
            position:absolute;
            top:0;left:0;right:0;height:4px;
            background: var(--border-color);
            transition: background 0.3s;
        }
        .network-card:hover {
            border-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
            background: var(--surface-hover);
        }
        .network-card:hover::before {
            background: var(--primary);
        }
        .net-logo {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            position: relative;
            aspect-ratio: 1;
        }
        .pulse-dot {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 12px;
            height: 12px;
            background: #ef4444;
            border: 2px solid var(--surface-color);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
        }
        
        .net-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .net-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            width: 100%;
            line-height: 1.3;
        }
        .net-country {
            font-size: 11px;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* SEO Architecture Row */
        .seo-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 60px 0 40px;
        }
        .seo-divider::before, .seo-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid var(--border-color);
        }
        .seo-divider span {
            padding: 0 20px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* SEO Country Flex Map */
        .region-map {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .region-block {
            background: rgba(255,255,255,0.01);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 30px;
        }
        .region-title {
            font-size: 24px;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .region-title span {
            font-size: 13px;
            padding: 4px 12px;
            background: #1e2230;
            border-radius: 20px;
            color: var(--text-secondary);
            font-weight: 600;
        }
        
        /* Sleek compact pills for Google/Index crawl */
        .country-pills {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }
        .country-pill {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: var(--surface-color);
            border: 1px solid rgba(255,255,255,0.03);
            border-radius: 12px;
            transition: all 0.2s;
        }
        .country-pill:hover {
            background: var(--surface-hover);
            border-color: rgba(255,255,255,0.1);
            transform: translateX(4px);
        }
        .cp-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .cp-left .fi {
            font-size: 1.5rem;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .cp-left i {
            font-size: 1.5rem;
            color: var(--text-secondary);
        }
        .cp-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .cp-count {
            font-size: 12px;
            font-weight: 600;
            color: #60a5fa;
            background: rgba(37,99,235,0.1);
            padding: 2px 8px;
            border-radius: 10px;
        }

        @media(max-width:768px){
            .hero-ux h1 { font-size: 32px; }
            .omnibox { flex-direction: column; padding: 12px; border-radius: 24px; }
            .omnibox input { width: 100%; padding: 12px; text-align: center; }
            .omnibox button { width: 100%; justify-content: center; }
            .network-wall { grid-template-columns: repeat(2, 1fr); }
            .region-block { padding: 20px; }
            .country-pills { grid-template-columns: 1fr; }
        }
        
        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}
        .breadcrumb a{color:var(--text-secondary);display:flex;align-items:center;gap:4px;}.breadcrumb a:hover{color:var(--primary);}
    

/* --- STYLES MOVED FROM streaming-services\country.php --- */

        :root{--bg-color:#06080a;--surface-color:#12141c;--surface-hover:#1b1f29;--text-primary:#f8fafc;--text-secondary:#94a3b8;--border-color:rgba(255,255,255,0.06);--primary:#2563eb;--primary-glow:rgba(37,99,235,0.4);--safe-bottom:env(safe-area-inset-bottom,0px);--shadow:0 10px 15px -3px rgba(0,0,0,0.4);--bg-card:#0f1117;}
        *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;}

        body{background-color:var(--bg-color);color:var(--text-primary);padding-bottom:calc(70px + var(--safe-bottom));line-height:1.6;font-size:16px;}
        a{text-decoration:none;color:inherit;transition:all 0.2s;}
        .s2w-page{max-width:1280px;margin:0 auto;padding:0 20px 60px;}
        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}
        /* Hero UX */
        .hero-ux { padding: 80px 0 60px; text-align: center; position: relative; z-index: 1; }
        .hero-ux::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%); pointer-events: none; z-index: -1; }
        .hero-flag{font-size:3.5rem;margin-bottom:14px;line-height:1;}
        .hero-flag .fi{border-radius:6px;box-shadow:0 4px 15px rgba(0,0,0,0.4);}
        .hero-ux h1 { font-size: clamp(32px, 5.5vw, 56px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.1; color: #f8fafc; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .hero-ux p { color: var(--text-secondary); max-width: 680px; margin: 0 auto 30px; font-size: 18px; line-height: 1.6; }
        
        /* Stats & Trust */
        .hero-stats{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:24px;}
        .stat-pill{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;background:rgba(18,20,28,0.8);border:1px solid rgba(255,255,255,0.06);border-radius:12px;font-size:13px;font-weight:700;color:var(--text-secondary);backdrop-filter:blur(10px);}
        .stat-pill strong{color:var(--text-primary);}.stat-pill i{color:var(--primary);}
        .trust-bar{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;padding:14px 0;margin-bottom:28px;border-bottom:1px solid var(--border-color);}
        .trust-item{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--text-secondary);}
        .trust-item i{color:#22c55e;}
        
        /* Omnibox */
        .omnibox-wrapper { max-width: 680px; margin: 0 auto; position: relative; }
        .omnibox { display: flex; align-items: center; background: rgba(18, 20, 28, 0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 6px; box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(10px); margin-top:20px; }
        .omnibox:focus-within { border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow), 0 20px 40px rgba(0,0,0,0.5); transform: scale(1.02); }
        .omnibox i { font-size: 22px; color: var(--text-secondary); margin: 0 16px; }
        .omnibox input { flex: 1; background: transparent; border: none; color: var(--text-primary); font-size: 16px; font-weight: 500; padding: 14px 0; outline: none; }
        /* Provider grid */
        .provider-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:16px;}
        .provider-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:16px;padding:22px;text-decoration:none;display:flex;flex-direction:column;gap:12px;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);box-shadow:var(--shadow);position:relative;overflow:hidden;}
        .provider-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-4px);background:var(--surface-hover);}
        .provider-logo{width:100%;height:72px;background:#fff;border-radius:12px;display:flex;align-items:center;justify-content:center;padding:10px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.15);}
        .provider-logo img{max-width:130px;max-height:52px;width:auto;height:auto;object-fit:contain;}
        .provider-logo i{font-size:2.2rem;color:var(--primary);}
        .free-badge{position:absolute;top:14px;right:14px;background:#059669;color:#fff;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;}
        .provider-name{font-size:16px;font-weight:800;color:var(--text-primary);line-height:1.3;}
        .provider-price{font-size:15px;font-weight:700;color:var(--primary);}
        .provider-meta{display:flex;gap:8px;flex-wrap:wrap;}
        .meta-chip{background:rgba(37,99,235,0.08);border:1px solid rgba(37,99,235,0.15);color:var(--text-secondary);padding:4px 10px;border-radius:20px;font-size:12px;display:flex;align-items:center;gap:4px;}
        .meta-chip i{color:var(--primary);font-size:11px;}
        .provider-cta{margin-top:auto;padding-top:12px;border-top:1px solid var(--border-color);display:flex;align-items:center;justify-content:space-between;}
        .cta-link{color:var(--primary);font-size:13px;font-weight:700;display:flex;align-items:center;gap:4px;transition:gap 0.2s;}
        .provider-card:hover .cta-link{gap:8px;}
        /* No results */
        .no-results-msg{display:none;text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);margin-top:20px;}
        .no-service{text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);}
        /* Trust strip */
        .trust-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px;margin:44px 0 32px;}
        .trust-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:20px 14px;text-align:center;transition:all 0.2s;}
        .trust-card:hover{transform:translateY(-2px);border-color:rgba(59,130,246,0.3);}
        .trust-card i{font-size:24px;color:var(--primary);margin-bottom:6px;display:block;}
        .trust-card strong{font-size:19px;font-weight:900;color:var(--text-primary);display:block;margin-bottom:3px;}
        .trust-card span{font-size:11px;font-weight:600;color:var(--text-secondary);text-transform:uppercase;letter-spacing:0.05em;}
        /* SEO */
        .guide-module{padding:28px 32px;background:rgba(255,255,255,0.02);border:1px solid var(--border-color);border-radius:20px;transition:all 0.3s;}
        .guide-module:hover{border-color:var(--primary);}
        .guide-module h2{font-size:19px;font-weight:800;color:var(--text-primary);margin-bottom:12px;display:flex;align-items:center;gap:10px;}
        .guide-module h2 i{color:var(--primary);}
        .guide-module p{font-size:15px;color:var(--text-secondary);line-height:1.8;margin-bottom:10px;max-width:none;}
        .guide-module p:last-child{margin-bottom:0;}
        /* Back nav */
        .back-nav{display:flex;align-items:center;gap:10px;margin-top:28px;flex-wrap:wrap;}
        .back-link{display:inline-flex;align-items:center;gap:6px;color:var(--primary);font-size:14px;font-weight:700;padding:8px 16px;background:rgba(37,99,235,0.08);border:1px solid rgba(37,99,235,0.2);border-radius:10px;transition:all 0.2s;}
        .back-link:hover{background:rgba(37,99,235,0.15);}
        @media(max-width:768px){.provider-grid{grid-template-columns:repeat(2,1fr);gap:10px;}.trust-strip{grid-template-columns:repeat(2,1fr);}.trust-bar{gap:12px;}}
        @media(max-width:440px){.provider-grid{grid-template-columns:1fr;}}
    

/* --- STYLES MOVED FROM streaming-services\index.php --- */

        :root { --bg-color:#06080a;--surface-color:#12141c;--surface-hover:#1b1f29;--text-primary:#f8fafc;--text-secondary:#94a3b8;--border-color:rgba(255,255,255,0.06);--primary:#2563eb;--primary-glow:rgba(37,99,235,0.4);--safe-bottom:env(safe-area-inset-bottom,0px);--shadow:0 10px 15px -3px rgba(0,0,0,0.4);--bg-card:#0f1117; }
        *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;}
        body{background-color:var(--bg-color);color:var(--text-primary);padding-bottom:calc(70px + var(--safe-bottom));line-height:1.6;font-size:16px;}
        a{text-decoration:none;color:inherit;transition:all 0.2s;}
        .s2w-page{max-width:1280px;margin:0 auto;padding:0 20px 60px;}
        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}
        .breadcrumb a{color:var(--text-secondary);display:flex;align-items:center;gap:4px;}
        .breadcrumb a:hover{color:var(--primary);}
        .hero{padding:64px 0 44px;text-align:center;position:relative;overflow:hidden;}
        .hero::before{content:'';position:absolute;top:-80px;left:50%;transform:translateX(-50%);width:600px;height:300px;background:radial-gradient(circle,rgba(59,130,246,0.1) 0%,transparent 70%);pointer-events:none;}
        .hero h1{font-size:clamp(26px,5vw,50px);font-weight:900;letter-spacing:-0.04em;margin-bottom:16px;line-height:1.1;color:#f8fafc;}
        .hero p{color:var(--text-secondary);max-width:680px;margin:0 auto 28px;font-size:17px;line-height:1.7;font-weight:500;}
        .hero-stats{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}
        .stat-pill{display:inline-flex;align-items:center;gap:8px;padding:9px 18px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:12px;font-size:14px;font-weight:700;color:var(--text-secondary);box-shadow:var(--shadow);}
        .stat-pill strong{color:var(--text-primary);font-size:16px;}.stat-pill i{color:var(--primary);}
        .section-header{margin:44px 0 14px;display:flex;justify-content:space-between;align-items:center;}
        .section-title{font-size:22px;font-weight:900;letter-spacing:-0.8px;display:flex;align-items:center;gap:10px;}
        .section-title i{color:var(--primary);}
        .filter-bar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:14px 20px;margin-bottom:22px;box-shadow:var(--shadow);}
        .filter-label{color:var(--text-secondary);font-size:13px;font-weight:700;display:flex;align-items:center;gap:6px;white-space:nowrap;text-transform:uppercase;letter-spacing:0.05em;}
        .filter-label i{color:var(--primary);}
        .filter-select{flex:1;min-width:220px;background:var(--bg-card);color:var(--text-primary);border:1px solid var(--border-color);border-radius:10px;padding:10px 14px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;outline:none;transition:border-color 0.2s;-webkit-appearance:none;appearance:none;min-height:48px;}
        .filter-select:hover,.filter-select:focus{border-color:var(--primary);}
        .filter-select option{background:#1a1d26;}
        .cards-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px;}
        .country-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:16px;padding:22px;text-decoration:none;display:flex;flex-direction:column;gap:12px;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);box-shadow:var(--shadow);}
        .country-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-4px);background:var(--surface-hover);}
        .card-top{display:flex;align-items:center;gap:14px;}
        .card-flag{font-size:2.2rem;line-height:1;flex-shrink:0;}
        .card-flag .fi{border-radius:4px;box-shadow:0 2px 6px rgba(0,0,0,0.3);}
        .card-flag i{font-size:2rem;color:var(--primary);}
        .card-name{font-size:16px;font-weight:800;color:var(--text-primary);line-height:1.3;}
        .card-count{font-size:13px;color:var(--text-secondary);margin-top:3px;display:flex;align-items:center;gap:4px;}
        .card-count i{color:var(--primary);font-size:12px;}
        .card-footer{padding-top:12px;display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--border-color);}
        .card-cta{font-size:13px;font-weight:700;color:var(--primary);display:flex;align-items:center;gap:5px;transition:gap 0.2s;}
        .country-card:hover .card-cta{gap:9px;}
        .no-results{display:none;text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);}
        .trust-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:14px;margin:50px 0 34px;}
        .trust-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:22px 16px;text-align:center;transition:all 0.2s;}
        .trust-card:hover{transform:translateY(-2px);border-color:rgba(59,130,246,0.3);}
        .trust-card i{font-size:26px;color:var(--primary);margin-bottom:8px;display:block;}
        .trust-card strong{font-size:22px;font-weight:900;color:var(--text-primary);display:block;margin-bottom:4px;letter-spacing:-0.5px;}
        .trust-card span{font-size:12px;font-weight:600;color:var(--text-secondary);text-transform:uppercase;letter-spacing:0.05em;}
        .guide-module{padding:32px;background:rgba(255,255,255,0.02);border:1px solid var(--border-color);border-radius:20px;transition:all 0.3s;}
        .guide-module:hover{background:rgba(255,255,255,0.03);border-color:var(--primary);}
        .guide-module h2{font-size:20px;font-weight:800;color:var(--text-primary);margin-bottom:14px;display:flex;align-items:center;gap:10px;letter-spacing:-0.3px;}
        .guide-module h2 i{color:var(--primary);}
        .guide-module p{font-size:15px;color:var(--text-secondary);line-height:1.8;font-weight:500;margin-bottom:10px;max-width:none;}
        .guide-module p:last-child{margin-bottom:0;}
        @media(max-width:768px){.cards-grid{grid-template-columns:repeat(2,1fr);gap:10px;}.trust-strip{grid-template-columns:repeat(2,1fr);}.filter-bar{flex-direction:column;align-items:stretch;}.filter-select{min-width:0;width:100%;}}
        @media(max-width:440px){.cards-grid{grid-template-columns:1fr;}}
    

/* --- STYLES MOVED FROM streaming-services\index.php --- */

        /* Premium Hero UX additions */
        .hero-ux { padding: 80px 0 60px; text-align: center; position: relative; z-index: 1; }
        .hero-ux::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%); pointer-events: none; z-index: -1; }
        .hero-ux h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.1; color: #f8fafc; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .hero-ux p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; font-size: 18px; line-height: 1.6; }
        .omnibox-wrapper { max-width: 680px; margin: 0 auto; position: relative; }
        .omnibox { display: flex; align-items: center; background: rgba(18, 20, 28, 0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(10px); }
        .omnibox:focus-within { border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow), 0 20px 40px rgba(0,0,0,0.5); transform: scale(1.02); }
        .omnibox i { font-size: 24px; color: var(--text-secondary); margin: 0 16px; }
        .omnibox input { flex: 1; background: transparent; border: none; color: var(--text-primary); font-size: 18px; font-weight: 500; padding: 16px 0; outline: none; }
        .omnibox button { background: var(--primary); color: #fff; border: none; border-radius: 14px; padding: 0 28px; height: 52px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; }
        .section-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; }
        .network-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; margin-bottom: 80px; }
        .network-card { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: all 0.3s; position: relative; overflow: hidden; text-decoration:none; }
        .network-card::before { content:''; position:absolute; top:0;left:0;right:0;height:4px; background: var(--border-color); transition: background 0.3s; }
        .network-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-5px); background: var(--surface-hover); }
        .network-card:hover::before { background: #22c55e; }
        .net-logo { width: 64px; height: 64px; border-radius: 12px; background: #fff; padding: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.2); position: relative; aspect-ratio: 1/1; }
        .net-logo img { max-width: 100%; max-height: 100%; object-fit: contain; background: #fff; }
        .net-name { font-size: 14px; font-weight: 700; color: var(--text-primary); width: 100%; line-height: 1.3; }
        .net-country { font-size: 11px; color: #22c55e; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
        @media(max-width:768px){ .omnibox{flex-direction:column;padding:12px;} .omnibox input{width:100%;padding:12px;text-align:center;} .omnibox button{width:100%;justify-content:center;} .network-wall{grid-template-columns:repeat(2,1fr);} }
    

/* --- STYLES MOVED FROM streaming-services\provider.php --- */

        :root {
            --bg-color: #04060a;
            --surface: #0a0d14;
            --surface-hover: #131826;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-tertiary: #64748b;
            --border-subtle: rgba(255,255,255,0.06);
            --border-glow: rgba(56, 189, 248, 0.4);
            --primary: #3b82f6;
            --accent: #8b5cf6;
            --safe-bottom: env(safe-area-inset-bottom, 0px);
        }

        /* Dash Layout */
        .dashboard-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; margin-bottom: 40px; }
        .main-column { display: flex; flex-direction: column; gap: 28px; }
        .sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }
        @media (max-width: 992px) { .dashboard-layout { grid-template-columns: 1fr; } .sidebar { position: relative; top: 0; } }

        *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',system-ui,-apple-system,sans-serif;}

        body {
            background-color: var(--bg-color);
            background-image: 
                radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.07) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.07) 0%, transparent 40%);
            background-attachment: fixed;
            color: var(--text-primary);
            padding-bottom: calc(80px + var(--safe-bottom));
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
        
        @keyframes slideFadeUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .s2w-page { max-width: 1240px; margin: 0 auto; padding: 0 24px; animation: slideFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

        .breadcrumb { display: flex; align-items: center; gap: 8px; padding: 24px 0 10px; font-size: 13px; color: var(--text-tertiary); font-weight: 500; flex-wrap: wrap; }
        .breadcrumb a { color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }
        .breadcrumb a:hover { color: var(--primary); }

        /* Premium Hero */
        .provider-hero {
            background: linear-gradient(180deg, rgba(30,41,59,0.3) 0%, rgba(15,23,42,0.4) 100%);
            border: 1px solid var(--border-subtle);
            border-top: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            padding: 56px 32px;
            margin: 20px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .provider-hero::after {
            content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 300px;
            background: radial-gradient(ellipse at top, rgba(59,130,246,0.15), transparent 60%);
            pointer-events: none; z-index: 0;
        }

        .hero-logo-box {
            position: relative; z-index: 1;
            width: 180px; height: 96px; background: #fff; border-radius: 16px;
            display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
            padding: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .provider-hero:hover .hero-logo-box { transform: translateY(-4px); }
        .hero-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
        .hero-logo-box i { font-size: 3.5rem; color: var(--primary); }

        .hero-title { position: relative; z-index: 1; font-size: clamp(28px, 5vw, 46px); font-weight: 900; letter-spacing: -1.5px; color: #fff; margin-bottom: 12px; text-shadow: 0 10px 30px rgba(0,0,0,0.6); }
        .hero-sub { position: relative; z-index: 1; font-size: 18px; color: var(--text-secondary); max-width: 720px; margin: 0 auto 32px; font-weight: 500; line-height: 1.6; }

        .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; position: relative; z-index: 1; }
        .badge { padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
        .badge-green { background: rgba(16,185,129,0.1); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }
        .badge-blue { background: rgba(59,130,246,0.1); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }
        .badge-yellow { background: rgba(245,158,11,0.1); color: #fcd34d; border: 1px solid rgba(245,158,11,0.25); }

        /* Actions */
        .btn-primary {
            background: linear-gradient(135deg, #0284c7, #2563eb);
            color: #fff; padding: 16px 32px; border-radius: 16px; font-weight: 700; font-size: 16px;
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            box-shadow: 0 12px 24px rgba(37,99,235,0.3); border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(37,99,235,0.5); background: linear-gradient(135deg, #0ea5e9, #3b82f6); }
        .btn-ghost {
            background: rgba(255,255,255,0.03); color: #e2e8f0; padding: 16px 28px; border-radius: 16px;
            font-weight: 600; font-size: 15px; border: 1px solid var(--border-subtle);
            display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s;
        }
        .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

        /* Stats Row */
        .stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-bottom: 40px; }
        .stat-box {
            background: rgba(255,255,255,0.02); backdrop-filter: blur(12px); border: 1px solid var(--border-subtle);
            border-radius: 20px; padding: 24px; text-align: center; transition: all 0.3s ease; box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
        }
        .stat-box:hover { transform: translateY(-5px); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
        .stat-box i { font-size: 26px; color: var(--primary); margin-bottom: 10px; display: block; filter: drop-shadow(0 0 8px rgba(59,130,246,0.3)); }
        .stat-box strong { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 2px; display: block; letter-spacing: -0.5px; }
        .stat-box span { font-size: 11px; font-weight: 800; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 1.5px; }

        /* Content Boxes */
        .content-box {
            background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
            border: 1px solid var(--border-subtle); border-radius: 24px; padding: 36px; margin-bottom: 28px;
            backdrop-filter: blur(12px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); transition: all 0.3s;
        }
        .content-box:hover { border-color: rgba(255,255,255,0.1); }
        .box-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; letter-spacing: -0.3px; }
        .box-title i { color: var(--primary); font-size: 22px; background: rgba(59,130,246,0.1); padding: 10px; border-radius: 12px; }

        /* Tags */
        .tags { display: flex; wrap: wrap; gap: 10px; flex-wrap: wrap; }
        .tag { background: rgba(255,255,255,0.04); color: #f1f5f9; border: 1px solid rgba(255,255,255,0.1); padding: 10px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; transition: all 0.2s; }
        .tag:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
        .tag-green { background: rgba(16,185,129,0.06); color: #34d399; border-color: rgba(16,185,129,0.2); }
        .tag-green:hover { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.4); color: #6ee7b7; box-shadow: 0 8px 20px rgba(16,185,129,0.15); }

        /* Pricing Cards */
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
        .pricing-card {
            background: rgba(255,255,255,0.015); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
        }
        .pricing-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); opacity: 0; transition: opacity 0.3s; }
        .pricing-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4); background: rgba(255,255,255,0.03); }
        .pricing-card:hover::before { opacity: 1; }
        .pricing-name { font-size: 14px; text-transform: uppercase; font-weight: 800; color: var(--text-tertiary); letter-spacing: 1.5px; margin-bottom: 8px; }
        .pricing-price { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 24px; letter-spacing: -1.5px; }
        .pricing-features { list-style: none; font-size: 15px; color: var(--text-secondary); }
        .pricing-features li { display: flex; align-items: start; gap: 12px; margin-bottom: 14px; font-weight: 500; }
        .pricing-features li i { color: #10b981; font-size: 20px; flex-shrink: 0; margin-top: 1px; }

        /* Tech Info List */
        .info-table { display: flex; flex-direction: column; gap: 12px; }
        .info-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 24px; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }
        .info-row:hover { background: rgba(255,255,255,0.04); }
        .info-label { color: var(--text-secondary); font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
        .info-label i { color: var(--primary); font-size: 18px; }
        .info-value { color: #fff; font-size: 15px; font-weight: 700; text-align: right; max-width: 65%; }

        /* Modern Channel Grid */
        .channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; }
        .channel-card {
    min-height: 48px;
            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 18px; padding: 20px 14px;
            display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }
        .channel-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.3); background: rgba(255,255,255,0.04); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
        .ch-logo { width: 64px; height: 64px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.15); border: 2px solid rgba(255,255,255,0.1); }
        .ch-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
        .ch-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
        .ch-name a { color: inherit; }
        .ch-name a::before { content:""; position:absolute; top:0; left:0; right:0; bottom:0; z-index:1; } /* Expanded click area */

        /* Similar Services */
        .similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
        .similar-card { background: rgba(255,255,255,0.02); backdrop-filter: blur(12px); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 16px; text-decoration: none; transition: all 0.3s; }
        .similar-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); background: rgba(255,255,255,0.04); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .sim-icon { font-size: 1.8rem; color: var(--primary); flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(59,130,246,0.4)); }
        .sim-name { font-size: 15px; font-weight: 700; color: #fff; }

        /* SEO / FAQ */
        .faq-item { border-bottom: 1px solid var(--border-subtle); padding: 24px 0; }
        .faq-item:last-child { border-bottom: none; border-radius: 0 0 24px 24px; }
        .faq-q { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; }
        .faq-q i { color: var(--primary); flex-shrink: 0; margin-top: 3px; font-size: 20px; filter: drop-shadow(0 0 5px rgba(59,130,246,0.3)); }
        .faq-a { font-size: 16px; color: var(--text-secondary); line-height: 1.8; padding-left: 32px; font-weight: 500; }

        @media(max-width: 768px) {
            .provider-hero { padding: 40px 20px; }
            .stats-row { grid-template-columns: repeat(2, 1fr); }
            .info-row { flex-direction: column; gap: 8px; }
            .info-value { text-align: left; }
        }
    

/* --- STYLES MOVED FROM streaming-services\provider.php --- */

            .coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 32px; }
            .coverage-box { background: linear-gradient(145deg, rgba(30,41,59,0.3) 0%, rgba(15,23,42,0.6) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05); }
            .coverage-hdr { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 16px; }
            .coverage-hdr i { font-size: 24px; padding: 10px; border-radius: 12px; }
            .coverage-hdr h4 { font-size: 18px; font-weight: 800; color: #fff; margin: 0; letter-spacing:-0.3px; }
            .pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
            .pro-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(15,23,42,0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; font-size: 14px; font-weight: 600; color: #cbd5e1; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
            .pro-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.3); color: #fff; }
            
            /* Sport Specific */
            .sport-pill-item:hover { border-color: #3b82f6; background: rgba(59,130,246,0.15); box-shadow: 0 8px 20px rgba(59,130,246,0.2); }
            .sport-pill-item i { color: #60a5fa; font-size: 16px; }
            
            /* League Specific */
            .league-pill-item { background: rgba(16,185,129,0.05); border-color: rgba(16,185,129,0.15); color: #34d399; }
            .league-pill-item:hover { border-color: #10b981; background: rgba(16,185,129,0.2); color: #fff; box-shadow: 0 8px 20px rgba(16,185,129,0.2); }
            .league-pill-item i { color: #34d399; font-size: 16px; }
            
            /* Unlinked Specific */
            .unlinked-pill { cursor: default; }
            .unlinked-pill:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.2); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
        

/* --- STYLES MOVED FROM .\channel-finder.php --- */

        body { background: var(--bg-color); color: var(--text-primary); line-height: 1.6; padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); overflow-x: clip; width: 100%; position: relative; }
        body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(67, 56, 202, .1) 0%, transparent 45%); pointer-events: none; z-index: -1; }
    

/* --- STYLES MOVED FROM .\compare.php --- */

    /* Global Base */
    body { background: var(--bg-color); color: var(--text-primary); line-height: 1.6; padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); overflow-x: clip; width: 100%; position: relative; }
    body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(67, 56, 202, .1) 0%, transparent 45%); pointer-events: none; z-index: -1; }

    /* Modern Shared Components */
    .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px;  background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow); position: relative; }
    .event-card:hover { border-color: rgba(59, 130, 246, 0.3); transform: translateY(-4px); background-color: var(--surface-hover); }

    /* Versus Specific Layout */
    .vs-hero {
        background: linear-gradient(to right, var(--surface-2), var(--surface-1));
        padding: 4rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }
    .vs-logos-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .vs-logo-box {
        background: var(--surface-3);
        padding: 1.5rem;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .vs-logo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .vs-badge {
        background: var(--primary-color);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 700;
        font-size: 1.1rem;
    }
    .vs-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    .vs-subtitle {
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        line-height: 1.6;
    }
    
    .compare-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 24px 20px;
    }

    .compare-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    @media (min-width: 768px) {
        .compare-grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
    }
    
    .compare-grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    @media (min-width: 768px) {
        .compare-grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
    }

    .table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 2rem;
        padding-bottom: 0.5rem;
    }
    
    .vs-table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
        margin-bottom: 1rem;
    }
    .vs-table th, .vs-table td {
        padding: 1.25rem 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: var(--text-primary);
        vertical-align: top;
    }
    .vs-table th {
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.85rem;
        color: var(--text-secondary);
        width: 30%;
    }
    .vs-table tr:hover td, .vs-table tr:hover th {
        background: rgba(255,255,255,0.02);
    }
    .vs-table td:nth-child(2) {
        border-right: 1px solid rgba(255,255,255,0.06);
        border-left: 1px solid rgba(255,255,255,0.06);
        background: rgba(0,0,0,0.2);
    }
    .vs-table td:nth-child(3) {
        background: #0b0d12;
    }
    
    .channel-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    .channel-pill {
        background: var(--surface-3);
        color: var(--text-secondary);
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
        font-size: 0.85rem;
        border: 1px solid var(--border-color);
    }
    
    .exclusive-pill {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary-color);
        border-color: rgba(59, 130, 246, 0.3);
    }
    
    .cta-vpn-banner {
        background: rgba(37, 99, 235, 0.05); /* Subtle Blue */
        border: 1px solid rgba(59, 130, 246, 0.2);
        padding: 1.25rem 2rem;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-vpn-banner h3 {
        color: #f8fafc;
        margin: 0 0 0.5rem 0;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .cta-vpn-banner p {
        color: var(--text-secondary);
        margin: 0 auto 1.2rem;
        max-width: 700px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #2563eb;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s ease;
        font-size: 0.9rem;
    }
    .cta-button:hover {
        background: #3b82f6;
        transform: translateY(-2px);
    }
    
    .pricing-card {
        background: var(--surface-3);
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
    }
    .pricing-card h4 { margin-top: 0; color: var(--text-primary); font-size: 1.1rem; }
    .pricing-card .price { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); margin: 0.5rem 0; }
    .pricing-card ul { margin: 0; padding-left: 1.5rem; color: var(--text-secondary); font-size: 0.9rem; }
    


/* --- STYLES MOVED FROM .\contact.php --- */

        .contact-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 24px;
            margin-top: 16px;
        }
        .contact-box h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 4px; display:flex; align-items:center; gap:8px;}
        .contact-box p { font-size: 14px; color: var(--text-secondary); margin: 0; }
        .contact-email { font-size: 18px; font-weight: 800; color: var(--primary); text-decoration: underline; }
        @media (max-width: 600px) {
            .contact-box { flex-direction: column; align-items: flex-start; gap: 16px; }
        }
    

/* --- STYLES MOVED FROM .\faq.php --- */

        .faq-grid {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        details.faq-item {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        details.faq-item[open] {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(37,99,235,0.1);
        }
        
        details.faq-item summary {
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-primary);
            list-style: none;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        details.faq-item summary::-webkit-details-marker {
            display: none;
        }
        
        details.faq-item summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 400;
            line-height: 1;
            transition: transform 0.3s ease;
        }
        
        details.faq-item[open] summary::after {
            content: 'âˆ’';
            color: var(--text-primary);
        }
        
        .faq-answer {
            padding: 0 24px 24px 24px;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .faq-answer p:not(:last-child) {
            margin-bottom: 12px;
        }
        
        .faq-answer a {
            color: var(--primary);
            font-weight: 600;
        }
        
        .faq-answer a:hover {
            text-decoration: underline;
        }

        .faq-section-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin: 3rem 0 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-section-title i {
            color: var(--primary);
        }
    

/* --- STYLES MOVED FROM .\game-finder.php --- */

        body { background: var(--bg-color); color: var(--text-primary); line-height: 1.6; padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); overflow-x: clip; width: 100%; position: relative; }
        body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(16, 185, 129, .1) 0%, transparent 45%); pointer-events: none; z-index: -1; }
        
        /* Event card: league label in header */
        .event-league { display: block; white-space: nowrap; margin-bottom: 6px; font-weight: 700; color: #cbd5e1; }
        .event-league i { margin-right: 4px; color: #10b981; }

        /* MatchPal Style Base (GRID VIEW DEFAULT) */
        .event-body {
            padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; box-sizing: border-box;
        }
        .competitor {
            display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; overflow: hidden;
        }
        .competitor-home { justify-content: flex-start; }
        .competitor-away { flex-direction: row-reverse; text-align: right; justify-content: flex-start; }
        .competitor-info { display: flex; flex-direction: column; gap: 2px; overflow: hidden; min-width: 0; flex: 1; }
        .team-name { font-size: 14px; font-weight: 600; color: #e2e8f0; line-height: 1.2; white-space: normal !important; overflow: visible !important; text-overflow: ellipsis !important; display: block; width: 100%; }
        .score-vs-box { background: rgba(30, 41, 59, 0.8); border: 1px solid rgba(51, 65, 85, 0.5); border-radius: 8px; padding: 4px 10px; color: #10b981; font-size: 13px; font-weight: 800; white-space: nowrap; flex-shrink: 0; }

        .team-logo-placeholder, .competitor img { 
            width: 32px !important; 
            height: 32px !important; 
            object-fit: contain; 
            background: rgba(255,255,255,0.03); 
            padding: 4px; border-radius: 8px; 
            border: 1px solid rgba(255,255,255,0.06); 
        }
        .team-logo-placeholder { 
            background: #1e2230; 
            display: flex !important; 
            align-items: center; 
            justify-content: center; 
            font-size: 11px; 
            font-weight: 800; 
            color: var(--text-secondary); 
            padding: 0; 
        }

        /* MatchPal List View Dynamic Styles */
        .events-grid.list-view { display: grid; grid-template-columns: 1fr; gap: 24px; }
        .events-grid.list-view .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px; 
            display: grid; grid-template-columns: 260px 1fr 260px; gap: 16px;
            align-items: center; padding: 14px 20px;
            background: #11141c; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
        }
        .events-grid.list-view .event-header {
            border: none; padding: 0; background: transparent; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px;
        }
        .events-grid.list-view .event-time { background: #1e2230; color: #fff; border-radius: 6px; padding: 6px 10px; font-size: 14px; font-weight: 800; }
        
        .events-grid.list-view .event-body {
            padding: 0; border: none; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-content: center; gap: 16px;
        }
        .events-grid.list-view .event-footer {
            border-top: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: flex-end; gap: 12px;
        }

        /* Widget reset for game finder specific */
        .event-card .streaming-services-wrapper { margin-top: 1.5rem !important; margin-bottom: 0 !important; grid-column: 1 / -1; width: 100%; box-sizing: border-box; }

        @media (max-width: 800px) {
            main { padding: 2rem 1rem !important; }
            .events-grid.list-view .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px;  display: flex !important; flex-direction: column !important; border-radius: 12px !important; padding: 16px !important; gap: 16px !important; background: #0f1117 !important; width: 100%; box-sizing: border-box; overflow: hidden; }
            .events-grid.list-view .event-header { flex-direction: row !important; flex-wrap: wrap !important; justify-content: space-between !important; align-items: center !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; padding-bottom: 12px !important; width: 100% !important; margin: 0 !important; gap: 8px !important;}
            
            .events-grid.list-view .event-body { display: flex !important; flex-direction: row !important; align-items: flex-start !important; justify-content: space-between !important; padding: 0 !important; gap: 8px !important; border: none !important; width: 100% !important; }
            
            .events-grid.list-view .competitor { width: 42% !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; justify-content: flex-start !important; gap: 8px !important; background: transparent !important; padding: 0 !important; }
            .events-grid.list-view .competitor-home, .events-grid.list-view .competitor-away { flex-direction: column !important; justify-content: flex-start !important; text-align: center !important; }
            .events-grid.list-view .competitor-info { align-items: center !important; text-align: center !important; grid-column: auto !important; grid-row: auto !important; }
            
            .events-grid.list-view .score-vs-box { align-self: center !important; font-size: 14px !important; padding: 4px 10px !important; margin: 0 4px !important; }
            .events-grid.list-view .team-logo-placeholder, .events-grid.list-view img { height: 36px !important; width: 36px !important; margin: 0 auto !important; position: static !important; }
            .events-grid.list-view .team-name { font-size: 14px !important; font-weight: 700 !important; white-space: normal !important; overflow: visible !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; padding-top: 4px !important; }

            .events-grid.list-view .event-footer { display: flex !important; flex-direction: column !important; align-items: stretch !important; border-top: 1px solid rgba(255,255,255,0.06) !important; padding-top: 16px !important; width: 100% !important; }
            
            .event-card .streaming-services-wrapper { margin-top: 0 !important; padding: 12px !important; box-shadow: none !important; border-radius: 8px !important; }
            .event-card .streaming-filter-bar { display: flex !important; flex-direction: column !important; align-items: stretch !important; width: 100% !important; box-sizing: border-box !important; }
            .event-card .streaming-filter-bar .filter-dropdown-container, .event-card .streaming-filter-bar select { width: 100%; flex-direction: column; align-items: stretch; }
        }
    

/* --- STYLES MOVED FROM .\league-directory.php --- */

        .directory-hero {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(15, 23, 42, 0.8));
            padding: 60px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 40px;
        }

        .directory-hero h1 {
            font-size: 36px;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .directory-hero p {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .leagues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        .league-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: flex-end;
            text-decoration: none;
            background-color: var(--surface-color);
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .league-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
        }

        .league-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .league-card:hover .league-card-bg {
            opacity: 1;
        }

        .league-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
            z-index: 2;
        }

        .league-card-content {
            position: relative;
            z-index: 3;
            padding: 24px;
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .league-card-title {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .league-card-sport {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
            background: rgba(59, 130, 246, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: var(--surface-color);
            border: 1px dashed var(--border-color);
            border-radius: 16px;
        }
    

/* --- STYLES MOVED FROM .\league-finder.php --- */

        body { background: var(--bg-color); color: var(--text-primary); line-height: 1.6; padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); overflow-x: clip; width: 100%; position: relative; }
        body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 12% 20%, rgba(245, 158, 11, .1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(220, 38, 38, .1) 0%, transparent 45%); pointer-events: none; z-index: -1; }
    

/* --- STYLES MOVED FROM .\mission.php --- */

        .mission-hero {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
            border-bottom: 1px solid var(--border-color);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .mission-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        .mission-hero h1 {
            font-size: 42px;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }
        .mission-hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .article-container {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }
        .article-container h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .article-container h2 i {
            color: var(--primary);
            font-size: 32px;
        }
        .article-container p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 24px;
        }
        .article-container .highlight-box {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 12px;
            padding: 24px;
            margin: 30px 0;
            color: #4ade80;
        }
        .article-container .highlight-box h3 {
            font-size: 18px;
            font-weight: 800;
            margin-top: 0;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
    

/* --- STYLES MOVED FROM .\responsible-gambling.php --- */

        .helplines { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 16px; }
        .helpline-item { background: #0f1117; border: 1px solid var(--border-color); border-radius: 12px; padding: 16px 20px; }
        .helpline-item strong { display: block; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 4px; }
        .helpline-item .hl-number { color: #60a5fa; font-size: 0.9rem; font-weight: 700; display: block; }
        .helpline-item small { display: block; color: var(--text-tertiary); font-size: 0.78rem; margin-top: 3px; }
        @media (max-width: 400px) { .helplines { grid-template-columns: 1fr; } }
    

/* --- STYLES MOVED FROM .\search.php --- */

        :root {
            --bg-color: #06080a;
            --surface-color: #12141c;
            --surface-hover: #1b1f29;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --border-color: rgba(255, 255, 255, 0.06);
            --primary: #2563eb;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            padding-bottom: 80px;
        }

        .search-hero {
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 40px;
        }

        .search-hero h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

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

        /* The exact same search form block style so it unifies with our header replacements */
        .search-container-large {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input-large {
            width: 100%;
            padding: 18px 24px 18px 56px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            transition: 0.2s;
            outline: none;
        }

        .search-input-large:focus {
            border-color: var(--primary);
            background: rgba(37, 99, 235, 0.05);
        }

        .search-btn-large {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-head {
            font-size: 22px;
            font-weight: 800;
            margin: 40px 0 24px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .empty-state {
            padding: 40px;
            text-align: center;
            border: 1px dashed var(--border-color);
            border-radius: 12px;
            color: var(--text-secondary);
            margin-top: 40px;
            background: rgba(255, 255, 255, 0.01);
        }

        .empty-state i {
            font-size: 48px;
            margin-bottom: 16px;
            color: var(--border-color);
            display: block;
        }

        /* Reused card styles from index.php! */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 20px;
        }

        .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px; 
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow);
        }

        .event-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            padding-bottom: 12px;
        }

        .event-body {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .competitor {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .team-logo, .team-logo-placeholder { 
            width: 32px !important; 
            height: 32px !important; 
            min-width: 32px !important; 
            max-width: 32px !important; 
            flex: 0 0 32px !important; 
            border-radius: 8px; 
            border: 1px solid var(--border-color); 
            box-sizing: border-box !important; 
            margin: 0 !important; 
        }
        .team-logo { 
            object-fit: contain; 
            background: rgba(255,255,255,0.03); 
            padding: 4px; 
        }
        .team-logo-placeholder { 
            background: #1e2230; 
            display: flex !important; 
            align-items: center; 
            justify-content: center; 
            font-size: 11px; 
            font-weight: 800; 
            color: var(--text-secondary); 
            padding: 0; 
        }
        .team-logo-placeholder[style*="display: none"], .team-logo-placeholder[style*="display:none"] { 
            display: none !important; 
        }

        .event-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px dashed rgba(255, 255, 255, 0.06);
            margin-top: auto;
        }

        .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

        .btn-view:hover {
            background: var(--primary);
            color: #fff;
        }

        .channel-card {
    min-height: 48px;
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 16px;
            transition: all 0.2s;
            text-decoration: none;
            cursor: pointer;
        }

        .channel-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .channel-logo {
            width: 48px;
            height: 48px;
            object-fit: contain;
            background: #fff;
            border-radius: 8px;
            padding: 4px;
        }

        .channel-info h3 {
            font-size: 16px;
            color: var(--text-primary);
            margin: 0 0 4px 0;
        }

        @font-face {
            font-family: 'Phosphor';
            src: url('/fonts/Phosphor.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Phosphor-Fill';
            src: url('/fonts/Phosphor-Fill.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        [class^="ph-"],
        [class*=" ph-"] {
            font-family: 'Phosphor' !important;
            font-style: normal;
            font-weight: normal;
        }

        [class^="ph-fill"],
        [class*=" ph-fill"] {
            font-family: 'Phosphor-Fill' !important;
        }
    

/* --- STYLES MOVED FROM .\service-finder.php --- */

        body { background: var(--bg-color); color: var(--text-primary); line-height: 1.6; padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); overflow-x: clip; width: 100%; position: relative; }
        body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 12% 20%, rgba(139, 92, 246, .1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(236, 72, 153, .1) 0%, transparent 45%); pointer-events: none; z-index: -1; }
        
        .sf-section { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; text-align: left; margin-bottom: 20px; }
        .sf-section h4 { color: #f8fafc; margin-top: 0; margin-bottom: 12px; font-weight: 800; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; }
        .sf-input-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px;}
        .sf-input-row > * { flex: 1; min-width: 150px; padding: 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: #0f1117; color: #f8fafc; font-size: 1rem; }
    

/* --- STYLES MOVED FROM .\verify-sources.php --- */

        .verify-hero {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            border-bottom: 1px solid var(--border-color);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .verify-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 50% 10%, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        .verify-hero h1 {
            font-size: 42px;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }
        .verify-hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .process-container {
            max-width: 850px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .step-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
            transition: border-color 0.2s;
        }
        .step-card:hover {
            border-color: rgba(34, 197, 94, 0.3);
        }
        .step-icon {
            background: rgba(34, 197, 94, 0.1);
            color: #4ade80;
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        .step-content h2 {
            margin: 0 0 12px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .step-badge {
            background: rgba(59, 130, 246, 0.1);
            color: #60a5fa;
            font-size: 11px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .step-content p {
            margin: 0;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        @media (max-width: 600px) {
            .step-card { flex-direction: column; gap: 16px; padding: 20px; }
            .step-icon { width: 48px; height: 48px; font-size: 24px; }
            .step-content h2 { font-size: 18px; }
        }
    

/* --- STYLES MOVED FROM includes\bundle-calculator.php --- */

        .bundle-calc-widget {
            background: var(--surface-color, #12141c);
            border: 1px solid var(--border-color, rgba(255,255,255,0.1));
            border-radius: 16px;
            overflow: hidden;
            margin: 24px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            font-family: 'Inter', sans-serif;
        }
        .bc-header {
            background: linear-gradient(135deg, #1e3a8a, #312e81);
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #3b82f6;
        }
        .bc-header.bc-promo-active {
            background: linear-gradient(135deg, #064e3b, #065f46);
            border-bottom-color: #10b981;
        }
        .bc-title-row {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }
        .bc-title-row i { font-size: 24px; color: #fbbf24; }
        .bc-promo-active .bc-title-row i { color: #34d399; }
        .bc-title-row h4 { margin: 0; font-size: 16px; font-weight: 800; letter-spacing: -0.5px; }
        .bc-promo-badge {
            background: #10b981;
            color: #fff;
            font-size: 11px;
            font-weight: 900;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
            animation: pulse 2s infinite;
        }
        .bc-body { padding: 20px; }
        .bc-context {
            font-size: 13px;
            color: var(--text-secondary, #94a3b8);
            margin: 0 0 16px 0;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.05));
        }
        .bc-options { display: flex; flex-direction: column; gap: 12px; }
        .bc-option-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 16px;
            border-radius: 12px;
            position: relative;
            flex-wrap: wrap;
            gap: 12px;
        }
        .bc-primary-opt {
            background: rgba(59, 130, 246, 0.05);
            border-color: rgba(59, 130, 246, 0.3);
            padding-top: 24px;
        }
        .bc-ribbon {
            position: absolute;
            top: -1px; left: 16px;
            background: #3b82f6;
            color: #fff;
            font-size: 9px;
            font-weight: 900;
            padding: 3px 8px;
            border-radius: 0 0 6px 6px;
            letter-spacing: 0.5px;
        }
        .bc-opt-main { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 250px; flex-wrap: wrap;}
        .bc-opt-name { font-weight: 800; font-size: 16px; color: #fff; }
        .bc-badge {
            font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 6px; text-transform: uppercase; white-space: nowrap;
        }
        .bundle-badge { background: rgba(99, 102, 241, 0.2); border: 1px solid #6366f1; color: #a5b4fc; }
        .trial-badge { background: rgba(16,185,129,0.15); border: 1px solid #10b981; color: #34d399; }
        .free-badge { background: #fbbf24; color: #78350f; }
        
        .bc-opt-price { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; }
        .bc-price-total { font-size: 18px; font-weight: 900; color: #94a3b8; line-height: 1; }
        .bc-price-breakdown { font-size: 11px; color: #64748b; font-weight: 600; margin-top: 4px; }
        
        .bc-btn {
            padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: 13px;
            text-decoration: none; display: flex; align-items: center; gap: 6px; transition: 0.2s; white-space: nowrap; height: fit-content;
        }
        .btn-gold { background: linear-gradient(135deg, #10b981, #059669); color: #fff; box-shadow: 0 4px 10px rgba(16,185,129,0.3); }
        .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(16,185,129,0.5); }
        .btn-dark { background: #1e2230; color: #e2e8f0; border: 1px solid rgba(255,255,255,0.1); }
        .btn-dark:hover { background: rgba(255,255,255,0.1); }
        @keyframes pulse {
            0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; }
        }
        @media(max-width: 600px) {
            .bc-option-card { flex-direction: column; align-items: flex-start; }
            .bc-btn { width: 100%; justify-content: center; }
            .bc-opt-price { align-items: flex-start; margin-bottom: 8px; margin-top: 8px;}
        }
    

/* --- STYLES MOVED FROM includes\channel-streaming-services.php --- */

        .streaming-filter-bar {
            display: inline-flex;
            align-items: center;
            background: rgba(15, 23, 42, 0.4);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 30px;
            padding: 6px 14px;
            margin-top: 15px;
            gap: 8px;
        }
        .region-select {
            background: transparent;
            color: #e2e8f0;
            border: none;
            font-size: 14px;
            font-weight: 600;
            outline: none;
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            padding-right: 15px;
        }
        .region-select option {
            background: #1e293b;
            color: #fff;
        }
        .streaming-services-wrapper {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
            margin: 2rem auto;
            max-width: 960px;
        }

        @media (max-width: 600px) {
            .streaming-services-wrapper {
                padding: 1rem;
                border-radius: 14px;
                margin: 1.5rem auto;
            }
        }

        .streaming-header {
            text-align: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(99, 102, 241, 0.15);
        }

        .streaming-header>i {
            font-size: 40px;
            color: #6366f1;
            margin-bottom: 0.6rem;
            display: block;
            animation: streaming-pulse 2s infinite;
        }

        .streaming-header h2 {
            font-size: 1.45rem;
            font-weight: 700;
            margin: 0 0 0.3rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .streaming-subtitle {
            color: #64748b;
            font-size: 13px;
            display: block;
        }

        /* Geo notice ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â small unobtrusive badge */
        .svc-geo-notice {
            display: inline-block;
            margin-top: 10px;
            background: rgba(99, 102, 241, 0.12);
            border: 1px solid rgba(99, 102, 241, 0.3);
            color: #a5b4fc;
            font-size: 0.8rem;
            padding: 4px 14px;
            border-radius: 20px;
        }

        /* GRID */
        .streaming-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 640px) {
            .streaming-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
        }

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

        /* CARD */
        .streaming-service-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(51, 65, 85, 0.6);
            border-radius: 18px;
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
            backdrop-filter: blur(8px);
        }

        .streaming-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6366f1, transparent);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .streaming-service-card:hover {
            transform: translateY(-5px);
            border-color: rgba(99, 102, 241, 0.7);
            box-shadow: 0 12px 36px rgba(99, 102, 241, 0.18);
        }

        .streaming-service-card:hover::before {
            opacity: 1;
        }

        /* HIGHLIGHT STATES */
        .streaming-service-card.svc-match {
            border-color: rgba(74, 222, 128, 0.6) !important;
            box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.1), 0 8px 28px rgba(74, 222, 128, 0.12);
        }

        .streaming-service-card.svc-match::before {
            opacity: 1 !important;
            background: linear-gradient(90deg, #4ade80, transparent) !important;
        }

        .streaming-service-card.svc-dim {
            opacity: 0.3;
            filter: grayscale(55%);
        }

        /* Badges */
        .svc-free-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.35);
            color: #4ade80;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 2px 6px;
            border-radius: 20px;
        }

        .svc-works-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(74, 222, 128, 0.15);
            border: 1px solid rgba(74, 222, 128, 0.35);
            color: #4ade80;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 20px;
            width: fit-content;
        }

        /* WHITE PILL LOGO */
        .svc-logo-pill {
            background: #fff;
            border-radius: 12px;
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            flex-shrink: 0;
        }

        .svc-logo-pill img {
            max-width: 130px;
            max-height: 56px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .svc-logo-initials {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.95rem;
            color: #fff;
            letter-spacing: 1px;
        }

        /* Body */
        .svc-name {
            font-weight: 700;
            font-size: 1rem;
            color: #f1f5f9;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .svc-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .svc-badge {
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .svc-badge-price {
            background: rgba(255, 255, 255, 0.08);
            color: #e2e8f0;
        }

        .svc-badge-trial {
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
        }

        .svc-badge-addon {
            background: rgba(99, 102, 241, 0.15);
            color: #818cf8;
        }

        .svc-country-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }

        .svc-country-chip {
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: #94a3b8;
            font-size: 0.64rem;
            padding: 2px 7px;
            border-radius: 20px;
        }

        /* CTA */
        .svc-cta {
            background: linear-gradient(135deg, #4f46e5, #4338ca);
            color: #fff;
            padding: 10px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.88rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background 0.2s, box-shadow 0.2s;
            border: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: auto;
        }

        .streaming-service-card:hover .svc-cta {
            background: linear-gradient(135deg, #4338ca, #3730a3);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
        }

        /* Footer */
        .streaming-footer {
            background: rgba(99, 102, 241, 0.06);
            border-radius: 10px;
            padding: 0.85rem 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            border: 1px solid rgba(99, 102, 241, 0.1);
        }

        .streaming-footer i {
            color: #6366f1;
            font-size: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .streaming-footer p {
            color: #64748b;
            font-size: 11px;
            margin: 0;
            line-height: 1.5;
        }

        @keyframes streaming-pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.6;
            }
        }
    

/* --- STYLES MOVED FROM includes\finished-event-page.php --- */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
            background: #0b0e11; 
            color: #e5e7eb; 
            line-height: 1.6;
        }
        /* Removed narrow 900px container */
        .header { text-align: center; margin-bottom: 40px; }
        .status-badge { 
            display: inline-block; 
            background: #374151; 
            color: #9ca3af; 
            padding: 8px 16px; 
            border-radius: 20px; 
            font-size: 14px; 
            font-weight: 600; 
            margin-bottom: 20px;
        }
        h1 { 
            font-size: 36px; 
            font-weight: 900; 
            color: #fff; 
            margin-bottom: 10px; 
        }
        .league { color: #9ca3af; font-size: 18px; }
        .info-box { 
            background: #1f2937; 
            border: 1px solid #374151; 
            border-radius: 12px; 
            padding: 30px; 
            margin-bottom: 30px;
            text-align: center;
        }
        .info-box h2 { 
            font-size: 24px; 
            color: #fff; 
            margin-bottom: 15px; 
        }
        .info-box p { 
            color: #9ca3af; 
            font-size: 16px; 
            line-height: 1.8;
        }
        .upcoming-section { margin-top: 50px; }
        .upcoming-section h2 { 
            font-size: 28px; 
            font-weight: 800; 
            color: #fff; 
            margin-bottom: 25px; 
        }
        .match-card { 
            background: #1f2937; 
            border: 1px solid #374151; 
            border-radius: 10px; 
            padding: 20px; 
            margin-bottom: 15px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: all 0.2s;
        }
        .match-card:hover { 
            border-color: #38bdf8; 
            transform: translateY(-2px); 
        }
        .match-info { flex: 1; }
        .match-teams { 
            font-size: 18px; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 5px; 
        }
        .match-date { 
            font-size: 14px; 
            color: #9ca3af; 
        }
        .match-arrow { 
            color: #38bdf8; 
            font-size: 24px; 
        }
        .cta-button { 
            display: inline-block; 
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); 
            color: #fff; 
            padding: 14px 30px; 
            border-radius: 8px; 
            text-decoration: none; 
            font-weight: 700; 
            font-size: 16px; 
            margin-top: 20px;
            transition: all 0.2s;
        }
        .cta-button:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); 
        }
    

/* --- STYLES MOVED FROM includes\footer.php --- */

/* CSS copied from index.php footer */
.site-footer { 
    background: var(--bg-elevated); 
    border-top: 1px solid var(--border-color); 
    padding: 64px 0 24px; 
    margin-top: 64px; 
}
.footer-accordion { display: none; } /* Kept for backwards compatibility if needed */
.footer-manifesto-grid { 
    max-width: 1100px; 
    margin: 0 auto 64px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 32px; 
}
.footer-manifesto-col {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s, border-color 0.2s;
}
.footer-manifesto-col:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}
.footer-manifesto-col h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-manifesto-col h3 i {
    color: var(--primary);
    font-size: 20px;
}
.footer-manifesto-col p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.footer-accordion summary { 
    padding: 20px; 
    font-weight: 800; 
    font-size: 16px; 
    cursor: pointer; 
    list-style: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion summary::after { 
    content: '\25BC'; 
    font-size: 12px; 
    color: var(--primary); 
    transition: transform 0.3s; 
}
.footer-accordion details[open] summary::after { transform: rotate(180deg); }
.footer-accordion .accordion-content { 
    padding: 0 20px 20px; 
    color: var(--text-secondary); 
    font-size: 14px; 
    line-height: 1.8; 
    border-top: 1px solid var(--border-color); 
    margin-top: 8px; 
    padding-top: 20px; 
}

.authority-links { max-width: 1000px; margin: 0 auto; }
.authority-title { 
    text-align: center; 
    font-size: 14px; 
    font-weight: 800; 
    color: #94a3b8; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    margin-bottom: 24px; 
}
.resource-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 16px; 
}
.resource-card { 
    background: rgba(255,255,255,0.02); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    padding: 16px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    text-decoration: none; 
    color: #ffffff; 
    transition: all 0.2s; 
}
.resource-card i { font-size: 24px; color: var(--text-primary); }
.resource-card span { font-size: 13px; font-weight: 700; }
.resource-card:hover { 
    background: var(--surface-color); 
    border-color: var(--primary); 
    color: var(--primary); 
    transform: translateY(-2px); 
}
.resource-card:hover i { color: var(--primary); }

.mobile-bottom-bar { 
    display: none; 
    position: fixed; 
    bottom: 0; left: 0; width: 100%; 
    background: rgba(15, 17, 23, 0.95); 
    backdrop-filter: blur(12px); 
    border-top: 1px solid var(--border-color); 
    z-index: 1000; 
    padding: 12px 16px; 
    padding-bottom: calc(12px + var(--safe-bottom)); 
}
.mobile-bottom-bar a { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 4px; 
    text-decoration: none; 
    color: #e2e8f0; 
    font-size: 11px; 
    font-weight: 700; 
}
.mobile-bottom-bar a.active { color: #60A5FA; }

@media (max-width: 768px) {
    .mobile-bottom-bar { display: flex; justify-content: space-between; }
    body { padding-bottom: 80px; }
}

/* Three Column Watch Links Layout */
.footer-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}
.footer-guide-col h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 800;
}
.footer-guide-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-bottom-bar {
    margin-top: 48px;
    border-top: 1px solid #ffffff10;
    padding-top: 28px;
    text-align: center;
    width: 100%;
}
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 20px;
    margin-bottom: 20px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 4px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #2563eb; }
.footer-bottom-links .footer-link-rg {
    color: #f87171 !important;
    font-weight: 700;
    gap: 5px;
}
.footer-bottom-links .footer-link-rg:hover { color: #fca5a5 !important; }
.footer-copyright {
    display: block;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
    padding-bottom: 8px;
    width: 100%;
}
.footer-guide-col a:hover { color: #2563eb; text-decoration: underline; }


/* --- STYLES MOVED FROM author/alexander-knight\index.php --- */

        body { background: #06080a; color: #f8fafc; font-family: 'Inter', sans-serif; }
        .author-container { max-width: 900px; margin: 80px auto; padding: 40px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4); }
        .author-header { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .author-header img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid #2563eb; }
        .author-header h1 { font-size: 36px; margin: 0 0 8px; font-weight: 900; letter-spacing: -0.02em; }
        .author-role { font-size: 18px; font-weight: 700; color: #3b82f6; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }
        .author-body h2 { font-size: 24px; color: #fff; margin: 32px 0 16px; font-weight: 800; border-left: 4px solid #3b82f6; padding-left: 12px; }
        .author-body p { font-size: 16px; line-height: 1.8; color: #cbd5e1; margin-bottom: 24px; }
        .author-body ul { padding-left: 20px; line-height: 1.8; color: #cbd5e1; margin-bottom: 24px; }
        .author-body li { margin-bottom: 8px; }
        .author-contact { margin-top: 40px; padding: 20px; background: rgba(37, 99, 235, 0.1); border-radius: 12px; }
        .btn-back { display: inline-flex; align-items: center; gap: 8px; color: #3b82f6; font-weight: 700; text-decoration: none; transition: 0.2s; margin-bottom: 20px; }
        .btn-back:hover { color: #60a5fa; transform: translateX(-4px); }
        @media (max-width: 768px) {
            .author-header { flex-direction: column; text-align: center; }
        }
    

/* PHOSPHOR ICONS */
/* --- STYLES MOVED FROM META.PHP (Phosphor / Font-face) --- */


    /* Inline @font-face as fast fallback in case external CSS is delayed */
    @font-face {
        font-family: 'Phosphor';
        src: url('/fonts/Phosphor.woff2') format('woff2');
        font-weight: normal; font-style: normal; font-display: block;
    }
    @font-face {
        font-family: 'Phosphor-Fill';
        src: url('/fonts/Phosphor-Fill.woff2') format('woff2');
        font-weight: normal; font-style: normal; font-display: block;
    }

    /* Base: all ph-* icons get shared rendering properties + default to Phosphor (regular) */
    .ph, .ph::before, .ph::after,
    .ph-bold, .ph-bold::before, .ph-bold::after,
    .ph-thin, .ph-thin::before, .ph-thin::after,
    .ph-light, .ph-light::before, .ph-light::after,
    .ph-duotone, .ph-duotone::before, .ph-duotone::after,
    [class^="ph-"], [class^="ph-"]::before, [class^="ph-"]::after,
    [class*=" ph-"], [class*=" ph-"]::before, [class*=" ph-"]::after {
        font-family: 'Phosphor' !important;
        font-weight: normal;
        font-style: normal;
        speak: never;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* CRITICAL FIX: ph-fill icons MUST use the Phosphor-Fill font.
       This selector is more specific and MUST come AFTER the block above.
       Chrome was showing blank icons because the broad selector above
       overrode Phosphor-fill.css when it loaded asynchronously. */
    .ph-fill,
    .ph-fill::before,
    .ph-fill::after {
        font-family: 'Phosphor-Fill' !important;
    }


/* --- PHOSPHOR REGULAR --- */

@font-face {
  font-family: "Phosphor";
  src:
    url("/fonts/Phosphor.woff2") format("woff2"),
    url("/fonts/Phosphor.woff") format("woff"),
    url("/fonts/Phosphor.ttf") format("truetype"),
    url("/fonts/Phosphor.svg#Phosphor") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.ph {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ph.ph-acorn:before {
  content: "\eb9a";
}
.ph.ph-address-book:before {
  content: "\e6f8";
}
.ph.ph-address-book-tabs:before {
  content: "\ee4e";
}
.ph.ph-air-traffic-control:before {
  content: "\ecd8";
}
.ph.ph-airplane:before {
  content: "\e002";
}
.ph.ph-airplane-in-flight:before {
  content: "\e4fe";
}
.ph.ph-airplane-landing:before {
  content: "\e502";
}
.ph.ph-airplane-takeoff:before {
  content: "\e504";
}
.ph.ph-airplane-taxiing:before {
  content: "\e500";
}
.ph.ph-airplane-tilt:before {
  content: "\e5d6";
}
.ph.ph-airplay:before {
  content: "\e004";
}
.ph.ph-alarm:before {
  content: "\e006";
}
.ph.ph-alien:before {
  content: "\e8a6";
}
.ph.ph-align-bottom:before {
  content: "\e506";
}
.ph.ph-align-bottom-simple:before {
  content: "\eb0c";
}
.ph.ph-align-center-horizontal:before {
  content: "\e50a";
}
.ph.ph-align-center-horizontal-simple:before {
  content: "\eb0e";
}
.ph.ph-align-center-vertical:before {
  content: "\e50c";
}
.ph.ph-align-center-vertical-simple:before {
  content: "\eb10";
}
.ph.ph-align-left:before {
  content: "\e50e";
}
.ph.ph-align-left-simple:before {
  content: "\eaee";
}
.ph.ph-align-right:before {
  content: "\e510";
}
.ph.ph-align-right-simple:before {
  content: "\eb12";
}
.ph.ph-align-top:before {
  content: "\e512";
}
.ph.ph-align-top-simple:before {
  content: "\eb14";
}
.ph.ph-amazon-logo:before {
  content: "\e96c";
}
.ph.ph-ambulance:before {
  content: "\e572";
}
.ph.ph-anchor:before {
  content: "\e514";
}
.ph.ph-anchor-simple:before {
  content: "\e5d8";
}
.ph.ph-android-logo:before {
  content: "\e008";
}
.ph.ph-angle:before {
  content: "\e7bc";
}
.ph.ph-angular-logo:before {
  content: "\eb80";
}
.ph.ph-aperture:before {
  content: "\e00a";
}
.ph.ph-app-store-logo:before {
  content: "\e974";
}
.ph.ph-app-window:before {
  content: "\e5da";
}
.ph.ph-apple-logo:before {
  content: "\e516";
}
.ph.ph-apple-podcasts-logo:before {
  content: "\eb96";
}
.ph.ph-approximate-equals:before {
  content: "\edaa";
}
.ph.ph-archive:before {
  content: "\e00c";
}
.ph.ph-armchair:before {
  content: "\e012";
}
.ph.ph-arrow-arc-left:before {
  content: "\e014";
}
.ph.ph-arrow-arc-right:before {
  content: "\e016";
}
.ph.ph-arrow-bend-double-up-left:before {
  content: "\e03a";
}
.ph.ph-arrow-bend-double-up-right:before {
  content: "\e03c";
}
.ph.ph-arrow-bend-down-left:before {
  content: "\e018";
}
.ph.ph-arrow-bend-down-right:before {
  content: "\e01a";
}
.ph.ph-arrow-bend-left-down:before {
  content: "\e01c";
}
.ph.ph-arrow-bend-left-up:before {
  content: "\e01e";
}
.ph.ph-arrow-bend-right-down:before {
  content: "\e020";
}
.ph.ph-arrow-bend-right-up:before {
  content: "\e022";
}
.ph.ph-arrow-bend-up-left:before {
  content: "\e024";
}
.ph.ph-arrow-bend-up-right:before {
  content: "\e026";
}
.ph.ph-arrow-circle-down:before {
  content: "\e028";
}
.ph.ph-arrow-circle-down-left:before {
  content: "\e02a";
}
.ph.ph-arrow-circle-down-right:before {
  content: "\e02c";
}
.ph.ph-arrow-circle-left:before {
  content: "\e05a";
}
.ph.ph-arrow-circle-right:before {
  content: "\e02e";
}
.ph.ph-arrow-circle-up:before {
  content: "\e030";
}
.ph.ph-arrow-circle-up-left:before {
  content: "\e032";
}
.ph.ph-arrow-circle-up-right:before {
  content: "\e034";
}
.ph.ph-arrow-clockwise:before {
  content: "\e036";
}
.ph.ph-arrow-counter-clockwise:before {
  content: "\e038";
}
.ph.ph-arrow-down:before {
  content: "\e03e";
}
.ph.ph-arrow-down-left:before {
  content: "\e040";
}
.ph.ph-arrow-down-right:before {
  content: "\e042";
}
.ph.ph-arrow-elbow-down-left:before {
  content: "\e044";
}
.ph.ph-arrow-elbow-down-right:before {
  content: "\e046";
}
.ph.ph-arrow-elbow-left:before {
  content: "\e048";
}
.ph.ph-arrow-elbow-left-down:before {
  content: "\e04a";
}
.ph.ph-arrow-elbow-left-up:before {
  content: "\e04c";
}
.ph.ph-arrow-elbow-right:before {
  content: "\e04e";
}
.ph.ph-arrow-elbow-right-down:before {
  content: "\e050";
}
.ph.ph-arrow-elbow-right-up:before {
  content: "\e052";
}
.ph.ph-arrow-elbow-up-left:before {
  content: "\e054";
}
.ph.ph-arrow-elbow-up-right:before {
  content: "\e056";
}
.ph.ph-arrow-fat-down:before {
  content: "\e518";
}
.ph.ph-arrow-fat-left:before {
  content: "\e51a";
}
.ph.ph-arrow-fat-line-down:before {
  content: "\e51c";
}
.ph.ph-arrow-fat-line-left:before {
  content: "\e51e";
}
.ph.ph-arrow-fat-line-right:before {
  content: "\e520";
}
.ph.ph-arrow-fat-line-up:before {
  content: "\e522";
}
.ph.ph-arrow-fat-lines-down:before {
  content: "\e524";
}
.ph.ph-arrow-fat-lines-left:before {
  content: "\e526";
}
.ph.ph-arrow-fat-lines-right:before {
  content: "\e528";
}
.ph.ph-arrow-fat-lines-up:before {
  content: "\e52a";
}
.ph.ph-arrow-fat-right:before {
  content: "\e52c";
}
.ph.ph-arrow-fat-up:before {
  content: "\e52e";
}
.ph.ph-arrow-left:before {
  content: "\e058";
}
.ph.ph-arrow-line-down:before {
  content: "\e05c";
}
.ph.ph-arrow-line-down-left:before {
  content: "\e05e";
}
.ph.ph-arrow-line-down-right:before {
  content: "\e060";
}
.ph.ph-arrow-line-left:before {
  content: "\e062";
}
.ph.ph-arrow-line-right:before {
  content: "\e064";
}
.ph.ph-arrow-line-up:before {
  content: "\e066";
}
.ph.ph-arrow-line-up-left:before {
  content: "\e068";
}
.ph.ph-arrow-line-up-right:before {
  content: "\e06a";
}
.ph.ph-arrow-right:before {
  content: "\e06c";
}
.ph.ph-arrow-square-down:before {
  content: "\e06e";
}
.ph.ph-arrow-square-down-left:before {
  content: "\e070";
}
.ph.ph-arrow-square-down-right:before {
  content: "\e072";
}
.ph.ph-arrow-square-in:before {
  content: "\e5dc";
}
.ph.ph-arrow-square-left:before {
  content: "\e074";
}
.ph.ph-arrow-square-out:before {
  content: "\e5de";
}
.ph.ph-arrow-square-right:before {
  content: "\e076";
}
.ph.ph-arrow-square-up:before {
  content: "\e078";
}
.ph.ph-arrow-square-up-left:before {
  content: "\e07a";
}
.ph.ph-arrow-square-up-right:before {
  content: "\e07c";
}
.ph.ph-arrow-u-down-left:before {
  content: "\e07e";
}
.ph.ph-arrow-u-down-right:before {
  content: "\e080";
}
.ph.ph-arrow-u-left-down:before {
  content: "\e082";
}
.ph.ph-arrow-u-left-up:before {
  content: "\e084";
}
.ph.ph-arrow-u-right-down:before {
  content: "\e086";
}
.ph.ph-arrow-u-right-up:before {
  content: "\e088";
}
.ph.ph-arrow-u-up-left:before {
  content: "\e08a";
}
.ph.ph-arrow-u-up-right:before {
  content: "\e08c";
}
.ph.ph-arrow-up:before {
  content: "\e08e";
}
.ph.ph-arrow-up-left:before {
  content: "\e090";
}
.ph.ph-arrow-up-right:before {
  content: "\e092";
}
.ph.ph-arrows-clockwise:before {
  content: "\e094";
}
.ph.ph-arrows-counter-clockwise:before {
  content: "\e096";
}
.ph.ph-arrows-down-up:before {
  content: "\e098";
}
.ph.ph-arrows-horizontal:before {
  content: "\eb06";
}
.ph.ph-arrows-in:before {
  content: "\e09a";
}
.ph.ph-arrows-in-cardinal:before {
  content: "\e09c";
}
.ph.ph-arrows-in-line-horizontal:before {
  content: "\e530";
}
.ph.ph-arrows-in-line-vertical:before {
  content: "\e532";
}
.ph.ph-arrows-in-simple:before {
  content: "\e09e";
}
.ph.ph-arrows-left-right:before {
  content: "\e0a0";
}
.ph.ph-arrows-merge:before {
  content: "\ed3e";
}
.ph.ph-arrows-out:before {
  content: "\e0a2";
}
.ph.ph-arrows-out-cardinal:before {
  content: "\e0a4";
}
.ph.ph-arrows-out-line-horizontal:before {
  content: "\e534";
}
.ph.ph-arrows-out-line-vertical:before {
  content: "\e536";
}
.ph.ph-arrows-out-simple:before {
  content: "\e0a6";
}
.ph.ph-arrows-split:before {
  content: "\ed3c";
}
.ph.ph-arrows-vertical:before {
  content: "\eb04";
}
.ph.ph-article:before {
  content: "\e0a8";
}
.ph.ph-article-medium:before {
  content: "\e5e0";
}
.ph.ph-article-ny-times:before {
  content: "\e5e2";
}
.ph.ph-asclepius:before {
  content: "\ee34";
}
.ph.ph-caduceus:before {
  content: "\ee34";
}
.ph.ph-asterisk:before {
  content: "\e0aa";
}
.ph.ph-asterisk-simple:before {
  content: "\e832";
}
.ph.ph-at:before {
  content: "\e0ac";
}
.ph.ph-atom:before {
  content: "\e5e4";
}
.ph.ph-avocado:before {
  content: "\ee04";
}
.ph.ph-axe:before {
  content: "\e9fc";
}
.ph.ph-baby:before {
  content: "\e774";
}
.ph.ph-baby-carriage:before {
  content: "\e818";
}
.ph.ph-backpack:before {
  content: "\e922";
}
.ph.ph-backspace:before {
  content: "\e0ae";
}
.ph.ph-bag:before {
  content: "\e0b0";
}
.ph.ph-bag-simple:before {
  content: "\e5e6";
}
.ph.ph-balloon:before {
  content: "\e76c";
}
.ph.ph-bandaids:before {
  content: "\e0b2";
}
.ph.ph-bank:before {
  content: "\e0b4";
}
.ph.ph-barbell:before {
  content: "\e0b6";
}
.ph.ph-barcode:before {
  content: "\e0b8";
}
.ph.ph-barn:before {
  content: "\ec72";
}
.ph.ph-barricade:before {
  content: "\e948";
}
.ph.ph-baseball:before {
  content: "\e71a";
}
.ph.ph-baseball-cap:before {
  content: "\ea28";
}
.ph.ph-baseball-helmet:before {
  content: "\ee4a";
}
.ph.ph-basket:before {
  content: "\e964";
}
.ph.ph-basketball:before {
  content: "\e724";
}
.ph.ph-bathtub:before {
  content: "\e81e";
}
.ph.ph-battery-charging:before {
  content: "\e0ba";
}
.ph.ph-battery-charging-vertical:before {
  content: "\e0bc";
}
.ph.ph-battery-empty:before {
  content: "\e0be";
}
.ph.ph-battery-full:before {
  content: "\e0c0";
}
.ph.ph-battery-high:before {
  content: "\e0c2";
}
.ph.ph-battery-low:before {
  content: "\e0c4";
}
.ph.ph-battery-medium:before {
  content: "\e0c6";
}
.ph.ph-battery-plus:before {
  content: "\e808";
}
.ph.ph-battery-plus-vertical:before {
  content: "\ec50";
}
.ph.ph-battery-vertical-empty:before {
  content: "\e7c6";
}
.ph.ph-battery-vertical-full:before {
  content: "\e7c4";
}
.ph.ph-battery-vertical-high:before {
  content: "\e7c2";
}
.ph.ph-battery-vertical-low:before {
  content: "\e7be";
}
.ph.ph-battery-vertical-medium:before {
  content: "\e7c0";
}
.ph.ph-battery-warning:before {
  content: "\e0c8";
}
.ph.ph-battery-warning-vertical:before {
  content: "\e0ca";
}
.ph.ph-beach-ball:before {
  content: "\ed24";
}
.ph.ph-beanie:before {
  content: "\ea2a";
}
.ph.ph-bed:before {
  content: "\e0cc";
}
.ph.ph-beer-bottle:before {
  content: "\e7b0";
}
.ph.ph-beer-stein:before {
  content: "\eb62";
}
.ph.ph-behance-logo:before {
  content: "\e7f4";
}
.ph.ph-bell:before {
  content: "\e0ce";
}
.ph.ph-bell-ringing:before {
  content: "\e5e8";
}
.ph.ph-bell-simple:before {
  content: "\e0d0";
}
.ph.ph-bell-simple-ringing:before {
  content: "\e5ea";
}
.ph.ph-bell-simple-slash:before {
  content: "\e0d2";
}
.ph.ph-bell-simple-z:before {
  content: "\e5ec";
}
.ph.ph-bell-slash:before {
  content: "\e0d4";
}
.ph.ph-bell-z:before {
  content: "\e5ee";
}
.ph.ph-belt:before {
  content: "\ea2c";
}
.ph.ph-bezier-curve:before {
  content: "\eb00";
}
.ph.ph-bicycle:before {
  content: "\e0d6";
}
.ph.ph-binary:before {
  content: "\ee60";
}
.ph.ph-binoculars:before {
  content: "\ea64";
}
.ph.ph-biohazard:before {
  content: "\e9e0";
}
.ph.ph-bird:before {
  content: "\e72c";
}
.ph.ph-blueprint:before {
  content: "\eda0";
}
.ph.ph-bluetooth:before {
  content: "\e0da";
}
.ph.ph-bluetooth-connected:before {
  content: "\e0dc";
}
.ph.ph-bluetooth-slash:before {
  content: "\e0de";
}
.ph.ph-bluetooth-x:before {
  content: "\e0e0";
}
.ph.ph-boat:before {
  content: "\e786";
}
.ph.ph-bomb:before {
  content: "\ee0a";
}
.ph.ph-bone:before {
  content: "\e7f2";
}
.ph.ph-book:before {
  content: "\e0e2";
}
.ph.ph-book-bookmark:before {
  content: "\e0e4";
}
.ph.ph-book-open:before {
  content: "\e0e6";
}
.ph.ph-book-open-text:before {
  content: "\e8f2";
}
.ph.ph-book-open-user:before {
  content: "\ede0";
}
.ph.ph-bookmark:before {
  content: "\e0e8";
}
.ph.ph-bookmark-simple:before {
  content: "\e0ea";
}
.ph.ph-bookmarks:before {
  content: "\e0ec";
}
.ph.ph-bookmarks-simple:before {
  content: "\e5f0";
}
.ph.ph-books:before {
  content: "\e758";
}
.ph.ph-boot:before {
  content: "\ecca";
}
.ph.ph-boules:before {
  content: "\e722";
}
.ph.ph-bounding-box:before {
  content: "\e6ce";
}
.ph.ph-bowl-food:before {
  content: "\eaa4";
}
.ph.ph-bowl-steam:before {
  content: "\e8e4";
}
.ph.ph-bowling-ball:before {
  content: "\ea34";
}
.ph.ph-box-arrow-down:before {
  content: "\e00e";
}
.ph.ph-archive-box:before {
  content: "\e00e";
}
.ph.ph-box-arrow-up:before {
  content: "\ee54";
}
.ph.ph-boxing-glove:before {
  content: "\ea36";
}
.ph.ph-brackets-angle:before {
  content: "\e862";
}
.ph.ph-brackets-curly:before {
  content: "\e860";
}
.ph.ph-brackets-round:before {
  content: "\e864";
}
.ph.ph-brackets-square:before {
  content: "\e85e";
}
.ph.ph-brain:before {
  content: "\e74e";
}
.ph.ph-brandy:before {
  content: "\e6b4";
}
.ph.ph-bread:before {
  content: "\e81c";
}
.ph.ph-bridge:before {
  content: "\ea68";
}
.ph.ph-briefcase:before {
  content: "\e0ee";
}
.ph.ph-briefcase-metal:before {
  content: "\e5f2";
}
.ph.ph-broadcast:before {
  content: "\e0f2";
}
.ph.ph-broom:before {
  content: "\ec54";
}
.ph.ph-browser:before {
  content: "\e0f4";
}
.ph.ph-browsers:before {
  content: "\e0f6";
}
.ph.ph-bug:before {
  content: "\e5f4";
}
.ph.ph-bug-beetle:before {
  content: "\e5f6";
}
.ph.ph-bug-droid:before {
  content: "\e5f8";
}
.ph.ph-building:before {
  content: "\e100";
}
.ph.ph-building-apartment:before {
  content: "\e0fe";
}
.ph.ph-building-office:before {
  content: "\e0ff";
}
.ph.ph-buildings:before {
  content: "\e102";
}
.ph.ph-bulldozer:before {
  content: "\ec6c";
}
.ph.ph-bus:before {
  content: "\e106";
}
.ph.ph-butterfly:before {
  content: "\ea6e";
}
.ph.ph-cable-car:before {
  content: "\e49c";
}
.ph.ph-cactus:before {
  content: "\e918";
}
.ph.ph-cake:before {
  content: "\e780";
}
.ph.ph-calculator:before {
  content: "\e538";
}
.ph.ph-calendar:before {
  content: "\e108";
}
.ph.ph-calendar-blank:before {
  content: "\e10a";
}
.ph.ph-calendar-check:before {
  content: "\e712";
}
.ph.ph-calendar-dot:before {
  content: "\e7b2";
}
.ph.ph-calendar-dots:before {
  content: "\e7b4";
}
.ph.ph-calendar-heart:before {
  content: "\e8b0";
}
.ph.ph-calendar-minus:before {
  content: "\ea14";
}
.ph.ph-calendar-plus:before {
  content: "\e714";
}
.ph.ph-calendar-slash:before {
  content: "\ea12";
}
.ph.ph-calendar-star:before {
  content: "\e8b2";
}
.ph.ph-calendar-x:before {
  content: "\e10c";
}
.ph.ph-call-bell:before {
  content: "\e7de";
}
.ph.ph-camera:before {
  content: "\e10e";
}
.ph.ph-camera-plus:before {
  content: "\ec58";
}
.ph.ph-camera-rotate:before {
  content: "\e7a4";
}
.ph.ph-camera-slash:before {
  content: "\e110";
}
.ph.ph-campfire:before {
  content: "\e9d8";
}
.ph.ph-car:before {
  content: "\e112";
}
.ph.ph-car-battery:before {
  content: "\ee30";
}
.ph.ph-car-profile:before {
  content: "\e8cc";
}
.ph.ph-car-simple:before {
  content: "\e114";
}
.ph.ph-cardholder:before {
  content: "\e5fa";
}
.ph.ph-cards:before {
  content: "\e0f8";
}
.ph.ph-cards-three:before {
  content: "\ee50";
}
.ph.ph-caret-circle-double-down:before {
  content: "\e116";
}
.ph.ph-caret-circle-double-left:before {
  content: "\e118";
}
.ph.ph-caret-circle-double-right:before {
  content: "\e11a";
}
.ph.ph-caret-circle-double-up:before {
  content: "\e11c";
}
.ph.ph-caret-circle-down:before {
  content: "\e11e";
}
.ph.ph-caret-circle-left:before {
  content: "\e120";
}
.ph.ph-caret-circle-right:before {
  content: "\e122";
}
.ph.ph-caret-circle-up:before {
  content: "\e124";
}
.ph.ph-caret-circle-up-down:before {
  content: "\e13e";
}
.ph.ph-caret-double-down:before {
  content: "\e126";
}
.ph.ph-caret-double-left:before {
  content: "\e128";
}
.ph.ph-caret-double-right:before {
  content: "\e12a";
}
.ph.ph-caret-double-up:before {
  content: "\e12c";
}
.ph.ph-caret-down:before {
  content: "\e136";
}
.ph.ph-caret-left:before {
  content: "\e138";
}
.ph.ph-caret-line-down:before {
  content: "\e134";
}
.ph.ph-caret-line-left:before {
  content: "\e132";
}
.ph.ph-caret-line-right:before {
  content: "\e130";
}
.ph.ph-caret-line-up:before {
  content: "\e12e";
}
.ph.ph-caret-right:before {
  content: "\e13a";
}
.ph.ph-caret-up:before {
  content: "\e13c";
}
.ph.ph-caret-up-down:before {
  content: "\e140";
}
.ph.ph-carrot:before {
  content: "\ed38";
}
.ph.ph-cash-register:before {
  content: "\ed80";
}
.ph.ph-cassette-tape:before {
  content: "\ed2e";
}
.ph.ph-castle-turret:before {
  content: "\e9d0";
}
.ph.ph-cat:before {
  content: "\e748";
}
.ph.ph-cell-signal-full:before {
  content: "\e142";
}
.ph.ph-cell-signal-high:before {
  content: "\e144";
}
.ph.ph-cell-signal-low:before {
  content: "\e146";
}
.ph.ph-cell-signal-medium:before {
  content: "\e148";
}
.ph.ph-cell-signal-none:before {
  content: "\e14a";
}
.ph.ph-cell-signal-slash:before {
  content: "\e14c";
}
.ph.ph-cell-signal-x:before {
  content: "\e14e";
}
.ph.ph-cell-tower:before {
  content: "\ebaa";
}
.ph.ph-certificate:before {
  content: "\e766";
}
.ph.ph-chair:before {
  content: "\e950";
}
.ph.ph-chalkboard:before {
  content: "\e5fc";
}
.ph.ph-chalkboard-simple:before {
  content: "\e5fe";
}
.ph.ph-chalkboard-teacher:before {
  content: "\e600";
}
.ph.ph-champagne:before {
  content: "\eaca";
}
.ph.ph-charging-station:before {
  content: "\e8d0";
}
.ph.ph-chart-bar:before {
  content: "\e150";
}
.ph.ph-chart-bar-horizontal:before {
  content: "\e152";
}
.ph.ph-chart-donut:before {
  content: "\eaa6";
}
.ph.ph-chart-line:before {
  content: "\e154";
}
.ph.ph-chart-line-down:before {
  content: "\e8b6";
}
.ph.ph-chart-line-up:before {
  content: "\e156";
}
.ph.ph-chart-pie:before {
  content: "\e158";
}
.ph.ph-chart-pie-slice:before {
  content: "\e15a";
}
.ph.ph-chart-polar:before {
  content: "\eaa8";
}
.ph.ph-chart-scatter:before {
  content: "\eaac";
}
.ph.ph-chat:before {
  content: "\e15c";
}
.ph.ph-chat-centered:before {
  content: "\e160";
}
.ph.ph-chat-centered-dots:before {
  content: "\e164";
}
.ph.ph-chat-centered-slash:before {
  content: "\e162";
}
.ph.ph-chat-centered-text:before {
  content: "\e166";
}
.ph.ph-chat-circle:before {
  content: "\e168";
}
.ph.ph-chat-circle-dots:before {
  content: "\e16c";
}
.ph.ph-chat-circle-slash:before {
  content: "\e16a";
}
.ph.ph-chat-circle-text:before {
  content: "\e16e";
}
.ph.ph-chat-dots:before {
  content: "\e170";
}
.ph.ph-chat-slash:before {
  content: "\e15e";
}
.ph.ph-chat-teardrop:before {
  content: "\e172";
}
.ph.ph-chat-teardrop-dots:before {
  content: "\e176";
}
.ph.ph-chat-teardrop-slash:before {
  content: "\e174";
}
.ph.ph-chat-teardrop-text:before {
  content: "\e178";
}
.ph.ph-chat-text:before {
  content: "\e17a";
}
.ph.ph-chats:before {
  content: "\e17c";
}
.ph.ph-chats-circle:before {
  content: "\e17e";
}
.ph.ph-chats-teardrop:before {
  content: "\e180";
}
.ph.ph-check:before {
  content: "\e182";
}
.ph.ph-check-circle:before {
  content: "\e184";
}
.ph.ph-check-fat:before {
  content: "\eba6";
}
.ph.ph-check-square:before {
  content: "\e186";
}
.ph.ph-check-square-offset:before {
  content: "\e188";
}
.ph.ph-checkerboard:before {
  content: "\e8c4";
}
.ph.ph-checks:before {
  content: "\e53a";
}
.ph.ph-cheers:before {
  content: "\ea4a";
}
.ph.ph-cheese:before {
  content: "\e9fe";
}
.ph.ph-chef-hat:before {
  content: "\ed8e";
}
.ph.ph-cherries:before {
  content: "\e830";
}
.ph.ph-church:before {
  content: "\ecea";
}
.ph.ph-cigarette:before {
  content: "\ed90";
}
.ph.ph-cigarette-slash:before {
  content: "\ed92";
}
.ph.ph-circle:before {
  content: "\e18a";
}
.ph.ph-circle-dashed:before {
  content: "\e602";
}
.ph.ph-circle-half:before {
  content: "\e18c";
}
.ph.ph-circle-half-tilt:before {
  content: "\e18e";
}
.ph.ph-circle-notch:before {
  content: "\eb44";
}
.ph.ph-circles-four:before {
  content: "\e190";
}
.ph.ph-circles-three:before {
  content: "\e192";
}
.ph.ph-circles-three-plus:before {
  content: "\e194";
}
.ph.ph-circuitry:before {
  content: "\e9c2";
}
.ph.ph-city:before {
  content: "\ea6a";
}
.ph.ph-clipboard:before {
  content: "\e196";
}
.ph.ph-clipboard-text:before {
  content: "\e198";
}
.ph.ph-clock:before {
  content: "\e19a";
}
.ph.ph-clock-afternoon:before {
  content: "\e19c";
}
.ph.ph-clock-clockwise:before {
  content: "\e19e";
}
.ph.ph-clock-countdown:before {
  content: "\ed2c";
}
.ph.ph-clock-counter-clockwise:before {
  content: "\e1a0";
}
.ph.ph-clock-user:before {
  content: "\edec";
}
.ph.ph-closed-captioning:before {
  content: "\e1a4";
}
.ph.ph-cloud:before {
  content: "\e1aa";
}
.ph.ph-cloud-arrow-down:before {
  content: "\e1ac";
}
.ph.ph-cloud-arrow-up:before {
  content: "\e1ae";
}
.ph.ph-cloud-check:before {
  content: "\e1b0";
}
.ph.ph-cloud-fog:before {
  content: "\e53c";
}
.ph.ph-cloud-lightning:before {
  content: "\e1b2";
}
.ph.ph-cloud-moon:before {
  content: "\e53e";
}
.ph.ph-cloud-rain:before {
  content: "\e1b4";
}
.ph.ph-cloud-slash:before {
  content: "\e1b6";
}
.ph.ph-cloud-snow:before {
  content: "\e1b8";
}
.ph.ph-cloud-sun:before {
  content: "\e540";
}
.ph.ph-cloud-warning:before {
  content: "\ea98";
}
.ph.ph-cloud-x:before {
  content: "\ea96";
}
.ph.ph-clover:before {
  content: "\edc8";
}
.ph.ph-club:before {
  content: "\e1ba";
}
.ph.ph-coat-hanger:before {
  content: "\e7fe";
}
.ph.ph-coda-logo:before {
  content: "\e7ce";
}
.ph.ph-code:before {
  content: "\e1bc";
}
.ph.ph-code-block:before {
  content: "\eafe";
}
.ph.ph-code-simple:before {
  content: "\e1be";
}
.ph.ph-codepen-logo:before {
  content: "\e978";
}
.ph.ph-codesandbox-logo:before {
  content: "\ea06";
}
.ph.ph-coffee:before {
  content: "\e1c2";
}
.ph.ph-coffee-bean:before {
  content: "\e1c0";
}
.ph.ph-coin:before {
  content: "\e60e";
}
.ph.ph-coin-vertical:before {
  content: "\eb48";
}
.ph.ph-coins:before {
  content: "\e78e";
}
.ph.ph-columns:before {
  content: "\e546";
}
.ph.ph-columns-plus-left:before {
  content: "\e544";
}
.ph.ph-columns-plus-right:before {
  content: "\e542";
}
.ph.ph-command:before {
  content: "\e1c4";
}
.ph.ph-compass:before {
  content: "\e1c8";
}
.ph.ph-compass-rose:before {
  content: "\e1c6";
}
.ph.ph-compass-tool:before {
  content: "\ea0e";
}
.ph.ph-computer-tower:before {
  content: "\e548";
}
.ph.ph-confetti:before {
  content: "\e81a";
}
.ph.ph-contactless-payment:before {
  content: "\ed42";
}
.ph.ph-control:before {
  content: "\eca6";
}
.ph.ph-cookie:before {
  content: "\e6ca";
}
.ph.ph-cooking-pot:before {
  content: "\e764";
}
.ph.ph-copy:before {
  content: "\e1ca";
}
.ph.ph-copy-simple:before {
  content: "\e1cc";
}
.ph.ph-copyleft:before {
  content: "\e86a";
}
.ph.ph-copyright:before {
  content: "\e54a";
}
.ph.ph-corners-in:before {
  content: "\e1ce";
}
.ph.ph-corners-out:before {
  content: "\e1d0";
}
.ph.ph-couch:before {
  content: "\e7f6";
}
.ph.ph-court-basketball:before {
  content: "\ee36";
}
.ph.ph-cow:before {
  content: "\eabe";
}
.ph.ph-cowboy-hat:before {
  content: "\ed12";
}
.ph.ph-cpu:before {
  content: "\e610";
}
.ph.ph-crane:before {
  content: "\ed48";
}
.ph.ph-crane-tower:before {
  content: "\ed49";
}
.ph.ph-credit-card:before {
  content: "\e1d2";
}
.ph.ph-cricket:before {
  content: "\ee12";
}
.ph.ph-crop:before {
  content: "\e1d4";
}
.ph.ph-cross:before {
  content: "\e8a0";
}
.ph.ph-crosshair:before {
  content: "\e1d6";
}
.ph.ph-crosshair-simple:before {
  content: "\e1d8";
}
.ph.ph-crown:before {
  content: "\e614";
}
.ph.ph-crown-cross:before {
  content: "\ee5e";
}
.ph.ph-crown-simple:before {
  content: "\e616";
}
.ph.ph-cube:before {
  content: "\e1da";
}
.ph.ph-cube-focus:before {
  content: "\ed0a";
}
.ph.ph-cube-transparent:before {
  content: "\ec7c";
}
.ph.ph-currency-btc:before {
  content: "\e618";
}
.ph.ph-currency-circle-dollar:before {
  content: "\e54c";
}
.ph.ph-currency-cny:before {
  content: "\e54e";
}
.ph.ph-currency-dollar:before {
  content: "\e550";
}
.ph.ph-currency-dollar-simple:before {
  content: "\e552";
}
.ph.ph-currency-eth:before {
  content: "\eada";
}
.ph.ph-currency-eur:before {
  content: "\e554";
}
.ph.ph-currency-gbp:before {
  content: "\e556";
}
.ph.ph-currency-inr:before {
  content: "\e558";
}
.ph.ph-currency-jpy:before {
  content: "\e55a";
}
.ph.ph-currency-krw:before {
  content: "\e55c";
}
.ph.ph-currency-kzt:before {
  content: "\ec4c";
}
.ph.ph-currency-ngn:before {
  content: "\eb52";
}
.ph.ph-currency-rub:before {
  content: "\e55e";
}
.ph.ph-cursor:before {
  content: "\e1dc";
}
.ph.ph-cursor-click:before {
  content: "\e7c8";
}
.ph.ph-cursor-text:before {
  content: "\e7d8";
}
.ph.ph-cylinder:before {
  content: "\e8fc";
}
.ph.ph-database:before {
  content: "\e1de";
}
.ph.ph-desk:before {
  content: "\ed16";
}
.ph.ph-desktop:before {
  content: "\e560";
}
.ph.ph-desktop-tower:before {
  content: "\e562";
}
.ph.ph-detective:before {
  content: "\e83e";
}
.ph.ph-dev-to-logo:before {
  content: "\ed0e";
}
.ph.ph-device-mobile:before {
  content: "\e1e0";
}
.ph.ph-device-mobile-camera:before {
  content: "\e1e2";
}
.ph.ph-device-mobile-slash:before {
  content: "\ee46";
}
.ph.ph-device-mobile-speaker:before {
  content: "\e1e4";
}
.ph.ph-device-rotate:before {
  content: "\edf2";
}
.ph.ph-device-tablet:before {
  content: "\e1e6";
}
.ph.ph-device-tablet-camera:before {
  content: "\e1e8";
}
.ph.ph-device-tablet-speaker:before {
  content: "\e1ea";
}
.ph.ph-devices:before {
  content: "\eba4";
}
.ph.ph-diamond:before {
  content: "\e1ec";
}
.ph.ph-diamonds-four:before {
  content: "\e8f4";
}
.ph.ph-dice-five:before {
  content: "\e1ee";
}
.ph.ph-dice-four:before {
  content: "\e1f0";
}
.ph.ph-dice-one:before {
  content: "\e1f2";
}
.ph.ph-dice-six:before {
  content: "\e1f4";
}
.ph.ph-dice-three:before {
  content: "\e1f6";
}
.ph.ph-dice-two:before {
  content: "\e1f8";
}
.ph.ph-disc:before {
  content: "\e564";
}
.ph.ph-disco-ball:before {
  content: "\ed98";
}
.ph.ph-discord-logo:before {
  content: "\e61a";
}
.ph.ph-divide:before {
  content: "\e1fa";
}
.ph.ph-dna:before {
  content: "\e924";
}
.ph.ph-dog:before {
  content: "\e74a";
}
.ph.ph-door:before {
  content: "\e61c";
}
.ph.ph-door-open:before {
  content: "\e7e6";
}
.ph.ph-dot:before {
  content: "\ecde";
}
.ph.ph-dot-outline:before {
  content: "\ece0";
}
.ph.ph-dots-nine:before {
  content: "\e1fc";
}
.ph.ph-dots-six:before {
  content: "\e794";
}
.ph.ph-dots-six-vertical:before {
  content: "\eae2";
}
.ph.ph-dots-three:before {
  content: "\e1fe";
}
.ph.ph-dots-three-circle:before {
  content: "\e200";
}
.ph.ph-dots-three-circle-vertical:before {
  content: "\e202";
}
.ph.ph-dots-three-outline:before {
  content: "\e204";
}
.ph.ph-dots-three-outline-vertical:before {
  content: "\e206";
}
.ph.ph-dots-three-vertical:before {
  content: "\e208";
}
.ph.ph-download:before {
  content: "\e20a";
}
.ph.ph-download-simple:before {
  content: "\e20c";
}
.ph.ph-dress:before {
  content: "\ea7e";
}
.ph.ph-dresser:before {
  content: "\e94e";
}
.ph.ph-dribbble-logo:before {
  content: "\e20e";
}
.ph.ph-drone:before {
  content: "\ed74";
}
.ph.ph-drop:before {
  content: "\e210";
}
.ph.ph-drop-half:before {
  content: "\e566";
}
.ph.ph-drop-half-bottom:before {
  content: "\eb40";
}
.ph.ph-drop-simple:before {
  content: "\ee32";
}
.ph.ph-drop-slash:before {
  content: "\e954";
}
.ph.ph-dropbox-logo:before {
  content: "\e7d0";
}
.ph.ph-ear:before {
  content: "\e70c";
}
.ph.ph-ear-slash:before {
  content: "\e70e";
}
.ph.ph-egg:before {
  content: "\e812";
}
.ph.ph-egg-crack:before {
  content: "\eb64";
}
.ph.ph-eject:before {
  content: "\e212";
}
.ph.ph-eject-simple:before {
  content: "\e6ae";
}
.ph.ph-elevator:before {
  content: "\ecc0";
}
.ph.ph-empty:before {
  content: "\edbc";
}
.ph.ph-engine:before {
  content: "\ea80";
}
.ph.ph-envelope:before {
  content: "\e214";
}
.ph.ph-envelope-open:before {
  content: "\e216";
}
.ph.ph-envelope-simple:before {
  content: "\e218";
}
.ph.ph-envelope-simple-open:before {
  content: "\e21a";
}
.ph.ph-equalizer:before {
  content: "\ebbc";
}
.ph.ph-equals:before {
  content: "\e21c";
}
.ph.ph-eraser:before {
  content: "\e21e";
}
.ph.ph-escalator-down:before {
  content: "\ecba";
}
.ph.ph-escalator-up:before {
  content: "\ecbc";
}
.ph.ph-exam:before {
  content: "\e742";
}
.ph.ph-exclamation-mark:before {
  content: "\ee44";
}
.ph.ph-exclude:before {
  content: "\e882";
}
.ph.ph-exclude-square:before {
  content: "\e880";
}
.ph.ph-export:before {
  content: "\eaf0";
}
.ph.ph-eye:before {
  content: "\e220";
}
.ph.ph-eye-closed:before {
  content: "\e222";
}
.ph.ph-eye-slash:before {
  content: "\e224";
}
.ph.ph-eyedropper:before {
  content: "\e568";
}
.ph.ph-eyedropper-sample:before {
  content: "\eac4";
}
.ph.ph-eyeglasses:before {
  content: "\e7ba";
}
.ph.ph-eyes:before {
  content: "\ee5c";
}
.ph.ph-face-mask:before {
  content: "\e56a";
}
.ph.ph-facebook-logo:before {
  content: "\e226";
}
.ph.ph-factory:before {
  content: "\e760";
}
.ph.ph-faders:before {
  content: "\e228";
}
.ph.ph-faders-horizontal:before {
  content: "\e22a";
}
.ph.ph-fallout-shelter:before {
  content: "\e9de";
}
.ph.ph-fan:before {
  content: "\e9f2";
}
.ph.ph-farm:before {
  content: "\ec70";
}
.ph.ph-fast-forward:before {
  content: "\e6a6";
}
.ph.ph-fast-forward-circle:before {
  content: "\e22c";
}
.ph.ph-feather:before {
  content: "\e9c0";
}
.ph.ph-fediverse-logo:before {
  content: "\ed66";
}
.ph.ph-figma-logo:before {
  content: "\e22e";
}
.ph.ph-file:before {
  content: "\e230";
}
.ph.ph-file-archive:before {
  content: "\eb2a";
}
.ph.ph-file-arrow-down:before {
  content: "\e232";
}
.ph.ph-file-arrow-up:before {
  content: "\e61e";
}
.ph.ph-file-audio:before {
  content: "\ea20";
}
.ph.ph-file-c:before {
  content: "\eb32";
}
.ph.ph-file-c-sharp:before {
  content: "\eb30";
}
.ph.ph-file-cloud:before {
  content: "\e95e";
}
.ph.ph-file-code:before {
  content: "\e914";
}
.ph.ph-file-cpp:before {
  content: "\eb2e";
}
.ph.ph-file-css:before {
  content: "\eb34";
}
.ph.ph-file-csv:before {
  content: "\eb1c";
}
.ph.ph-file-dashed:before {
  content: "\e704";
}
.ph.ph-file-dotted:before {
  content: "\e704";
}
.ph.ph-file-doc:before {
  content: "\eb1e";
}
.ph.ph-file-html:before {
  content: "\eb38";
}
.ph.ph-file-image:before {
  content: "\ea24";
}
.ph.ph-file-ini:before {
  content: "\eb33";
}
.ph.ph-file-jpg:before {
  content: "\eb1a";
}
.ph.ph-file-js:before {
  content: "\eb24";
}
.ph.ph-file-jsx:before {
  content: "\eb3a";
}
.ph.ph-file-lock:before {
  content: "\e95c";
}
.ph.ph-file-magnifying-glass:before {
  content: "\e238";
}
.ph.ph-file-search:before {
  content: "\e238";
}
.ph.ph-file-md:before {
  content: "\ed50";
}
.ph.ph-file-minus:before {
  content: "\e234";
}
.ph.ph-file-pdf:before {
  content: "\e702";
}
.ph.ph-file-plus:before {
  content: "\e236";
}
.ph.ph-file-png:before {
  content: "\eb18";
}
.ph.ph-file-ppt:before {
  content: "\eb20";
}
.ph.ph-file-py:before {
  content: "\eb2c";
}
.ph.ph-file-rs:before {
  content: "\eb28";
}
.ph.ph-file-sql:before {
  content: "\ed4e";
}
.ph.ph-file-svg:before {
  content: "\ed08";
}
.ph.ph-file-text:before {
  content: "\e23a";
}
.ph.ph-file-ts:before {
  content: "\eb26";
}
.ph.ph-file-tsx:before {
  content: "\eb3c";
}
.ph.ph-file-txt:before {
  content: "\eb35";
}
.ph.ph-file-video:before {
  content: "\ea22";
}
.ph.ph-file-vue:before {
  content: "\eb3e";
}
.ph.ph-file-x:before {
  content: "\e23c";
}
.ph.ph-file-xls:before {
  content: "\eb22";
}
.ph.ph-file-zip:before {
  content: "\e958";
}
.ph.ph-files:before {
  content: "\e710";
}
.ph.ph-film-reel:before {
  content: "\e8c0";
}
.ph.ph-film-script:before {
  content: "\eb50";
}
.ph.ph-film-slate:before {
  content: "\e8c2";
}
.ph.ph-film-strip:before {
  content: "\e792";
}
.ph.ph-fingerprint:before {
  content: "\e23e";
}
.ph.ph-fingerprint-simple:before {
  content: "\e240";
}
.ph.ph-finn-the-human:before {
  content: "\e56c";
}
.ph.ph-fire:before {
  content: "\e242";
}
.ph.ph-fire-extinguisher:before {
  content: "\e9e8";
}
.ph.ph-fire-simple:before {
  content: "\e620";
}
.ph.ph-fire-truck:before {
  content: "\e574";
}
.ph.ph-first-aid:before {
  content: "\e56e";
}
.ph.ph-first-aid-kit:before {
  content: "\e570";
}
.ph.ph-fish:before {
  content: "\e728";
}
.ph.ph-fish-simple:before {
  content: "\e72a";
}
.ph.ph-flag:before {
  content: "\e244";
}
.ph.ph-flag-banner:before {
  content: "\e622";
}
.ph.ph-flag-banner-fold:before {
  content: "\ecf2";
}
.ph.ph-flag-checkered:before {
  content: "\ea38";
}
.ph.ph-flag-pennant:before {
  content: "\ecf0";
}
.ph.ph-flame:before {
  content: "\e624";
}
.ph.ph-flashlight:before {
  content: "\e246";
}
.ph.ph-flask:before {
  content: "\e79e";
}
.ph.ph-flip-horizontal:before {
  content: "\ed6a";
}
.ph.ph-flip-vertical:before {
  content: "\ed6c";
}
.ph.ph-floppy-disk:before {
  content: "\e248";
}
.ph.ph-floppy-disk-back:before {
  content: "\eaf4";
}
.ph.ph-flow-arrow:before {
  content: "\e6ec";
}
.ph.ph-flower:before {
  content: "\e75e";
}
.ph.ph-flower-lotus:before {
  content: "\e6cc";
}
.ph.ph-flower-tulip:before {
  content: "\eacc";
}
.ph.ph-flying-saucer:before {
  content: "\eb4a";
}
.ph.ph-folder:before {
  content: "\e24a";
}
.ph.ph-folder-notch:before {
  content: "\e24a";
}
.ph.ph-folder-dashed:before {
  content: "\e8f8";
}
.ph.ph-folder-dotted:before {
  content: "\e8f8";
}
.ph.ph-folder-lock:before {
  content: "\ea3c";
}
.ph.ph-folder-minus:before {
  content: "\e254";
}
.ph.ph-folder-notch-minus:before {
  content: "\e254";
}
.ph.ph-folder-open:before {
  content: "\e256";
}
.ph.ph-folder-notch-open:before {
  content: "\e256";
}
.ph.ph-folder-plus:before {
  content: "\e258";
}
.ph.ph-folder-notch-plus:before {
  content: "\e258";
}
.ph.ph-folder-simple:before {
  content: "\e25a";
}
.ph.ph-folder-simple-dashed:before {
  content: "\ec2a";
}
.ph.ph-folder-simple-dotted:before {
  content: "\ec2a";
}
.ph.ph-folder-simple-lock:before {
  content: "\eb5e";
}
.ph.ph-folder-simple-minus:before {
  content: "\e25c";
}
.ph.ph-folder-simple-plus:before {
  content: "\e25e";
}
.ph.ph-folder-simple-star:before {
  content: "\ec2e";
}
.ph.ph-folder-simple-user:before {
  content: "\eb60";
}
.ph.ph-folder-star:before {
  content: "\ea86";
}
.ph.ph-folder-user:before {
  content: "\eb46";
}
.ph.ph-folders:before {
  content: "\e260";
}
.ph.ph-football:before {
  content: "\e718";
}
.ph.ph-football-helmet:before {
  content: "\ee4c";
}
.ph.ph-footprints:before {
  content: "\ea88";
}
.ph.ph-fork-knife:before {
  content: "\e262";
}
.ph.ph-four-k:before {
  content: "\ea5c";
}
.ph.ph-frame-corners:before {
  content: "\e626";
}
.ph.ph-framer-logo:before {
  content: "\e264";
}
.ph.ph-function:before {
  content: "\ebe4";
}
.ph.ph-funnel:before {
  content: "\e266";
}
.ph.ph-funnel-simple:before {
  content: "\e268";
}
.ph.ph-funnel-simple-x:before {
  content: "\e26a";
}
.ph.ph-funnel-x:before {
  content: "\e26c";
}
.ph.ph-game-controller:before {
  content: "\e26e";
}
.ph.ph-garage:before {
  content: "\ecd6";
}
.ph.ph-gas-can:before {
  content: "\e8ce";
}
.ph.ph-gas-pump:before {
  content: "\e768";
}
.ph.ph-gauge:before {
  content: "\e628";
}
.ph.ph-gavel:before {
  content: "\ea32";
}
.ph.ph-gear:before {
  content: "\e270";
}
.ph.ph-gear-fine:before {
  content: "\e87c";
}
.ph.ph-gear-six:before {
  content: "\e272";
}
.ph.ph-gender-female:before {
  content: "\e6e0";
}
.ph.ph-gender-intersex:before {
  content: "\e6e6";
}
.ph.ph-gender-male:before {
  content: "\e6e2";
}
.ph.ph-gender-neuter:before {
  content: "\e6ea";
}
.ph.ph-gender-nonbinary:before {
  content: "\e6e4";
}
.ph.ph-gender-transgender:before {
  content: "\e6e8";
}
.ph.ph-ghost:before {
  content: "\e62a";
}
.ph.ph-gif:before {
  content: "\e274";
}
.ph.ph-gift:before {
  content: "\e276";
}
.ph.ph-git-branch:before {
  content: "\e278";
}
.ph.ph-git-commit:before {
  content: "\e27a";
}
.ph.ph-git-diff:before {
  content: "\e27c";
}
.ph.ph-git-fork:before {
  content: "\e27e";
}
.ph.ph-git-merge:before {
  content: "\e280";
}
.ph.ph-git-pull-request:before {
  content: "\e282";
}
.ph.ph-github-logo:before {
  content: "\e576";
}
.ph.ph-gitlab-logo:before {
  content: "\e694";
}
.ph.ph-gitlab-logo-simple:before {
  content: "\e696";
}
.ph.ph-globe:before {
  content: "\e288";
}
.ph.ph-globe-hemisphere-east:before {
  content: "\e28a";
}
.ph.ph-globe-hemisphere-west:before {
  content: "\e28c";
}
.ph.ph-globe-simple:before {
  content: "\e28e";
}
.ph.ph-globe-simple-x:before {
  content: "\e284";
}
.ph.ph-globe-stand:before {
  content: "\e290";
}
.ph.ph-globe-x:before {
  content: "\e286";
}
.ph.ph-goggles:before {
  content: "\ecb4";
}
.ph.ph-golf:before {
  content: "\ea3e";
}
.ph.ph-goodreads-logo:before {
  content: "\ed10";
}
.ph.ph-google-cardboard-logo:before {
  content: "\e7b6";
}
.ph.ph-google-chrome-logo:before {
  content: "\e976";
}
.ph.ph-google-drive-logo:before {
  content: "\e8f6";
}
.ph.ph-google-logo:before {
  content: "\e292";
}
.ph.ph-google-photos-logo:before {
  content: "\eb92";
}
.ph.ph-google-play-logo:before {
  content: "\e294";
}
.ph.ph-google-podcasts-logo:before {
  content: "\eb94";
}
.ph.ph-gps:before {
  content: "\edd8";
}
.ph.ph-gps-fix:before {
  content: "\edd6";
}
.ph.ph-gps-slash:before {
  content: "\edd4";
}
.ph.ph-gradient:before {
  content: "\eb42";
}
.ph.ph-graduation-cap:before {
  content: "\e62c";
}
.ph.ph-grains:before {
  content: "\ec68";
}
.ph.ph-grains-slash:before {
  content: "\ec6a";
}
.ph.ph-graph:before {
  content: "\eb58";
}
.ph.ph-graphics-card:before {
  content: "\e612";
}
.ph.ph-greater-than:before {
  content: "\edc4";
}
.ph.ph-greater-than-or-equal:before {
  content: "\eda2";
}
.ph.ph-grid-four:before {
  content: "\e296";
}
.ph.ph-grid-nine:before {
  content: "\ec8c";
}
.ph.ph-guitar:before {
  content: "\ea8a";
}
.ph.ph-hair-dryer:before {
  content: "\ea66";
}
.ph.ph-hamburger:before {
  content: "\e790";
}
.ph.ph-hammer:before {
  content: "\e80e";
}
.ph.ph-hand:before {
  content: "\e298";
}
.ph.ph-hand-arrow-down:before {
  content: "\ea4e";
}
.ph.ph-hand-arrow-up:before {
  content: "\ee5a";
}
.ph.ph-hand-coins:before {
  content: "\ea8c";
}
.ph.ph-hand-deposit:before {
  content: "\ee82";
}
.ph.ph-hand-eye:before {
  content: "\ea4c";
}
.ph.ph-hand-fist:before {
  content: "\e57a";
}
.ph.ph-hand-grabbing:before {
  content: "\e57c";
}
.ph.ph-hand-heart:before {
  content: "\e810";
}
.ph.ph-hand-palm:before {
  content: "\e57e";
}
.ph.ph-hand-peace:before {
  content: "\e7cc";
}
.ph.ph-hand-pointing:before {
  content: "\e29a";
}
.ph.ph-hand-soap:before {
  content: "\e630";
}
.ph.ph-hand-swipe-left:before {
  content: "\ec94";
}
.ph.ph-hand-swipe-right:before {
  content: "\ec92";
}
.ph.ph-hand-tap:before {
  content: "\ec90";
}
.ph.ph-hand-waving:before {
  content: "\e580";
}
.ph.ph-hand-withdraw:before {
  content: "\ee80";
}
.ph.ph-handbag:before {
  content: "\e29c";
}
.ph.ph-handbag-simple:before {
  content: "\e62e";
}
.ph.ph-hands-clapping:before {
  content: "\e6a0";
}
.ph.ph-hands-praying:before {
  content: "\ecc8";
}
.ph.ph-handshake:before {
  content: "\e582";
}
.ph.ph-hard-drive:before {
  content: "\e29e";
}
.ph.ph-hard-drives:before {
  content: "\e2a0";
}
.ph.ph-hard-hat:before {
  content: "\ed46";
}
.ph.ph-hash:before {
  content: "\e2a2";
}
.ph.ph-hash-straight:before {
  content: "\e2a4";
}
.ph.ph-head-circuit:before {
  content: "\e7d4";
}
.ph.ph-headlights:before {
  content: "\e6fe";
}
.ph.ph-headphones:before {
  content: "\e2a6";
}
.ph.ph-headset:before {
  content: "\e584";
}
.ph.ph-heart:before {
  content: "\e2a8";
}
.ph.ph-heart-break:before {
  content: "\ebe8";
}
.ph.ph-heart-half:before {
  content: "\ec48";
}
.ph.ph-heart-straight:before {
  content: "\e2aa";
}
.ph.ph-heart-straight-break:before {
  content: "\eb98";
}
.ph.ph-heartbeat:before {
  content: "\e2ac";
}
.ph.ph-hexagon:before {
  content: "\e2ae";
}
.ph.ph-high-definition:before {
  content: "\ea8e";
}
.ph.ph-high-heel:before {
  content: "\e8e8";
}
.ph.ph-highlighter:before {
  content: "\ec76";
}
.ph.ph-highlighter-circle:before {
  content: "\e632";
}
.ph.ph-hockey:before {
  content: "\ec86";
}
.ph.ph-hoodie:before {
  content: "\ecd0";
}
.ph.ph-horse:before {
  content: "\e2b0";
}
.ph.ph-hospital:before {
  content: "\e844";
}
.ph.ph-hourglass:before {
  content: "\e2b2";
}
.ph.ph-hourglass-high:before {
  content: "\e2b4";
}
.ph.ph-hourglass-low:before {
  content: "\e2b6";
}
.ph.ph-hourglass-medium:before {
  content: "\e2b8";
}
.ph.ph-hourglass-simple:before {
  content: "\e2ba";
}
.ph.ph-hourglass-simple-high:before {
  content: "\e2bc";
}
.ph.ph-hourglass-simple-low:before {
  content: "\e2be";
}
.ph.ph-hourglass-simple-medium:before {
  content: "\e2c0";
}
.ph.ph-house:before {
  content: "\e2c2";
}
.ph.ph-house-line:before {
  content: "\e2c4";
}
.ph.ph-house-simple:before {
  content: "\e2c6";
}
.ph.ph-hurricane:before {
  content: "\e88e";
}
.ph.ph-ice-cream:before {
  content: "\e804";
}
.ph.ph-identification-badge:before {
  content: "\e6f6";
}
.ph.ph-identification-card:before {
  content: "\e2c8";
}
.ph.ph-image:before {
  content: "\e2ca";
}
.ph.ph-image-broken:before {
  content: "\e7a8";
}
.ph.ph-image-square:before {
  content: "\e2cc";
}
.ph.ph-images:before {
  content: "\e836";
}
.ph.ph-images-square:before {
  content: "\e834";
}
.ph.ph-infinity:before {
  content: "\e634";
}
.ph.ph-lemniscate:before {
  content: "\e634";
}
.ph.ph-info:before {
  content: "\e2ce";
}
.ph.ph-instagram-logo:before {
  content: "\e2d0";
}
.ph.ph-intersect:before {
  content: "\e2d2";
}
.ph.ph-intersect-square:before {
  content: "\e87a";
}
.ph.ph-intersect-three:before {
  content: "\ecc4";
}
.ph.ph-intersection:before {
  content: "\edba";
}
.ph.ph-invoice:before {
  content: "\ee42";
}
.ph.ph-island:before {
  content: "\ee06";
}
.ph.ph-jar:before {
  content: "\e7e0";
}
.ph.ph-jar-label:before {
  content: "\e7e1";
}
.ph.ph-jeep:before {
  content: "\e2d4";
}
.ph.ph-joystick:before {
  content: "\ea5e";
}
.ph.ph-kanban:before {
  content: "\eb54";
}
.ph.ph-key:before {
  content: "\e2d6";
}
.ph.ph-key-return:before {
  content: "\e782";
}
.ph.ph-keyboard:before {
  content: "\e2d8";
}
.ph.ph-keyhole:before {
  content: "\ea78";
}
.ph.ph-knife:before {
  content: "\e636";
}
.ph.ph-ladder:before {
  content: "\e9e4";
}
.ph.ph-ladder-simple:before {
  content: "\ec26";
}
.ph.ph-lamp:before {
  content: "\e638";
}
.ph.ph-lamp-pendant:before {
  content: "\ee2e";
}
.ph.ph-laptop:before {
  content: "\e586";
}
.ph.ph-lasso:before {
  content: "\edc6";
}
.ph.ph-lastfm-logo:before {
  content: "\e842";
}
.ph.ph-layout:before {
  content: "\e6d6";
}
.ph.ph-leaf:before {
  content: "\e2da";
}
.ph.ph-lectern:before {
  content: "\e95a";
}
.ph.ph-lego:before {
  content: "\e8c6";
}
.ph.ph-lego-smiley:before {
  content: "\e8c7";
}
.ph.ph-less-than:before {
  content: "\edac";
}
.ph.ph-less-than-or-equal:before {
  content: "\eda4";
}
.ph.ph-letter-circle-h:before {
  content: "\ebf8";
}
.ph.ph-letter-circle-p:before {
  content: "\ec08";
}
.ph.ph-letter-circle-v:before {
  content: "\ec14";
}
.ph.ph-lifebuoy:before {
  content: "\e63a";
}
.ph.ph-lightbulb:before {
  content: "\e2dc";
}
.ph.ph-lightbulb-filament:before {
  content: "\e63c";
}
.ph.ph-lighthouse:before {
  content: "\e9f6";
}
.ph.ph-lightning:before {
  content: "\e2de";
}
.ph.ph-lightning-a:before {
  content: "\ea84";
}
.ph.ph-lightning-slash:before {
  content: "\e2e0";
}
.ph.ph-line-segment:before {
  content: "\e6d2";
}
.ph.ph-line-segments:before {
  content: "\e6d4";
}
.ph.ph-line-vertical:before {
  content: "\ed70";
}
.ph.ph-link:before {
  content: "\e2e2";
}
.ph.ph-link-break:before {
  content: "\e2e4";
}
.ph.ph-link-simple:before {
  content: "\e2e6";
}
.ph.ph-link-simple-break:before {
  content: "\e2e8";
}
.ph.ph-link-simple-horizontal:before {
  content: "\e2ea";
}
.ph.ph-link-simple-horizontal-break:before {
  content: "\e2ec";
}
.ph.ph-linkedin-logo:before {
  content: "\e2ee";
}
.ph.ph-linktree-logo:before {
  content: "\edee";
}
.ph.ph-linux-logo:before {
  content: "\eb02";
}
.ph.ph-list:before {
  content: "\e2f0";
}
.ph.ph-list-bullets:before {
  content: "\e2f2";
}
.ph.ph-list-checks:before {
  content: "\eadc";
}
.ph.ph-list-dashes:before {
  content: "\e2f4";
}
.ph.ph-list-heart:before {
  content: "\ebde";
}
.ph.ph-list-magnifying-glass:before {
  content: "\ebe0";
}
.ph.ph-list-numbers:before {
  content: "\e2f6";
}
.ph.ph-list-plus:before {
  content: "\e2f8";
}
.ph.ph-list-star:before {
  content: "\ebdc";
}
.ph.ph-lock:before {
  content: "\e2fa";
}
.ph.ph-lock-key:before {
  content: "\e2fe";
}
.ph.ph-lock-key-open:before {
  content: "\e300";
}
.ph.ph-lock-laminated:before {
  content: "\e302";
}
.ph.ph-lock-laminated-open:before {
  content: "\e304";
}
.ph.ph-lock-open:before {
  content: "\e306";
}
.ph.ph-lock-simple:before {
  content: "\e308";
}
.ph.ph-lock-simple-open:before {
  content: "\e30a";
}
.ph.ph-lockers:before {
  content: "\ecb8";
}
.ph.ph-log:before {
  content: "\ed82";
}
.ph.ph-magic-wand:before {
  content: "\e6b6";
}
.ph.ph-magnet:before {
  content: "\e680";
}
.ph.ph-magnet-straight:before {
  content: "\e682";
}
.ph.ph-magnifying-glass:before {
  content: "\e30c";
}
.ph.ph-magnifying-glass-minus:before {
  content: "\e30e";
}
.ph.ph-magnifying-glass-plus:before {
  content: "\e310";
}
.ph.ph-mailbox:before {
  content: "\ec1e";
}
.ph.ph-map-pin:before {
  content: "\e316";
}
.ph.ph-map-pin-area:before {
  content: "\ee3a";
}
.ph.ph-map-pin-line:before {
  content: "\e318";
}
.ph.ph-map-pin-plus:before {
  content: "\e314";
}
.ph.ph-map-pin-simple:before {
  content: "\ee3e";
}
.ph.ph-map-pin-simple-area:before {
  content: "\ee3c";
}
.ph.ph-map-pin-simple-line:before {
  content: "\ee38";
}
.ph.ph-map-trifold:before {
  content: "\e31a";
}
.ph.ph-markdown-logo:before {
  content: "\e508";
}
.ph.ph-marker-circle:before {
  content: "\e640";
}
.ph.ph-martini:before {
  content: "\e31c";
}
.ph.ph-mask-happy:before {
  content: "\e9f4";
}
.ph.ph-mask-sad:before {
  content: "\eb9e";
}
.ph.ph-mastodon-logo:before {
  content: "\ed68";
}
.ph.ph-math-operations:before {
  content: "\e31e";
}
.ph.ph-matrix-logo:before {
  content: "\ed64";
}
.ph.ph-medal:before {
  content: "\e320";
}
.ph.ph-medal-military:before {
  content: "\ecfc";
}
.ph.ph-medium-logo:before {
  content: "\e322";
}
.ph.ph-megaphone:before {
  content: "\e324";
}
.ph.ph-megaphone-simple:before {
  content: "\e642";
}
.ph.ph-member-of:before {
  content: "\edc2";
}
.ph.ph-memory:before {
  content: "\e9c4";
}
.ph.ph-messenger-logo:before {
  content: "\e6d8";
}
.ph.ph-meta-logo:before {
  content: "\ed02";
}
.ph.ph-meteor:before {
  content: "\e9ba";
}
.ph.ph-metronome:before {
  content: "\ec8e";
}
.ph.ph-microphone:before {
  content: "\e326";
}
.ph.ph-microphone-slash:before {
  content: "\e328";
}
.ph.ph-microphone-stage:before {
  content: "\e75c";
}
.ph.ph-microscope:before {
  content: "\ec7a";
}
.ph.ph-microsoft-excel-logo:before {
  content: "\eb6c";
}
.ph.ph-microsoft-outlook-logo:before {
  content: "\eb70";
}
.ph.ph-microsoft-powerpoint-logo:before {
  content: "\eace";
}
.ph.ph-microsoft-teams-logo:before {
  content: "\eb66";
}
.ph.ph-microsoft-word-logo:before {
  content: "\eb6a";
}
.ph.ph-minus:before {
  content: "\e32a";
}
.ph.ph-minus-circle:before {
  content: "\e32c";
}
.ph.ph-minus-square:before {
  content: "\ed4c";
}
.ph.ph-money:before {
  content: "\e588";
}
.ph.ph-money-wavy:before {
  content: "\ee68";
}
.ph.ph-monitor:before {
  content: "\e32e";
}
.ph.ph-monitor-arrow-up:before {
  content: "\e58a";
}
.ph.ph-monitor-play:before {
  content: "\e58c";
}
.ph.ph-moon:before {
  content: "\e330";
}
.ph.ph-moon-stars:before {
  content: "\e58e";
}
.ph.ph-moped:before {
  content: "\e824";
}
.ph.ph-moped-front:before {
  content: "\e822";
}
.ph.ph-mosque:before {
  content: "\ecee";
}
.ph.ph-motorcycle:before {
  content: "\e80a";
}
.ph.ph-mountains:before {
  content: "\e7ae";
}
.ph.ph-mouse:before {
  content: "\e33a";
}
.ph.ph-mouse-left-click:before {
  content: "\e334";
}
.ph.ph-mouse-middle-click:before {
  content: "\e338";
}
.ph.ph-mouse-right-click:before {
  content: "\e336";
}
.ph.ph-mouse-scroll:before {
  content: "\e332";
}
.ph.ph-mouse-simple:before {
  content: "\e644";
}
.ph.ph-music-note:before {
  content: "\e33c";
}
.ph.ph-music-note-simple:before {
  content: "\e33e";
}
.ph.ph-music-notes:before {
  content: "\e340";
}
.ph.ph-music-notes-minus:before {
  content: "\ee0c";
}
.ph.ph-music-notes-plus:before {
  content: "\eb7c";
}
.ph.ph-music-notes-simple:before {
  content: "\e342";
}
.ph.ph-navigation-arrow:before {
  content: "\eade";
}
.ph.ph-needle:before {
  content: "\e82e";
}
.ph.ph-network:before {
  content: "\edde";
}
.ph.ph-network-slash:before {
  content: "\eddc";
}
.ph.ph-network-x:before {
  content: "\edda";
}
.ph.ph-newspaper:before {
  content: "\e344";
}
.ph.ph-newspaper-clipping:before {
  content: "\e346";
}
.ph.ph-not-equals:before {
  content: "\eda6";
}
.ph.ph-not-member-of:before {
  content: "\edae";
}
.ph.ph-not-subset-of:before {
  content: "\edb0";
}
.ph.ph-not-superset-of:before {
  content: "\edb2";
}
.ph.ph-notches:before {
  content: "\ed3a";
}
.ph.ph-note:before {
  content: "\e348";
}
.ph.ph-note-blank:before {
  content: "\e34a";
}
.ph.ph-note-pencil:before {
  content: "\e34c";
}
.ph.ph-notebook:before {
  content: "\e34e";
}
.ph.ph-notepad:before {
  content: "\e63e";
}
.ph.ph-notification:before {
  content: "\e6fa";
}
.ph.ph-notion-logo:before {
  content: "\e9a0";
}
.ph.ph-nuclear-plant:before {
  content: "\ed7c";
}
.ph.ph-number-circle-eight:before {
  content: "\e352";
}
.ph.ph-number-circle-five:before {
  content: "\e358";
}
.ph.ph-number-circle-four:before {
  content: "\e35e";
}
.ph.ph-number-circle-nine:before {
  content: "\e364";
}
.ph.ph-number-circle-one:before {
  content: "\e36a";
}
.ph.ph-number-circle-seven:before {
  content: "\e370";
}
.ph.ph-number-circle-six:before {
  content: "\e376";
}
.ph.ph-number-circle-three:before {
  content: "\e37c";
}
.ph.ph-number-circle-two:before {
  content: "\e382";
}
.ph.ph-number-circle-zero:before {
  content: "\e388";
}
.ph.ph-number-eight:before {
  content: "\e350";
}
.ph.ph-number-five:before {
  content: "\e356";
}
.ph.ph-number-four:before {
  content: "\e35c";
}
.ph.ph-number-nine:before {
  content: "\e362";
}
.ph.ph-number-one:before {
  content: "\e368";
}
.ph.ph-number-seven:before {
  content: "\e36e";
}
.ph.ph-number-six:before {
  content: "\e374";
}
.ph.ph-number-square-eight:before {
  content: "\e354";
}
.ph.ph-number-square-five:before {
  content: "\e35a";
}
.ph.ph-number-square-four:before {
  content: "\e360";
}
.ph.ph-number-square-nine:before {
  content: "\e366";
}
.ph.ph-number-square-one:before {
  content: "\e36c";
}
.ph.ph-number-square-seven:before {
  content: "\e372";
}
.ph.ph-number-square-six:before {
  content: "\e378";
}
.ph.ph-number-square-three:before {
  content: "\e37e";
}
.ph.ph-number-square-two:before {
  content: "\e384";
}
.ph.ph-number-square-zero:before {
  content: "\e38a";
}
.ph.ph-number-three:before {
  content: "\e37a";
}
.ph.ph-number-two:before {
  content: "\e380";
}
.ph.ph-number-zero:before {
  content: "\e386";
}
.ph.ph-numpad:before {
  content: "\e3c8";
}
.ph.ph-nut:before {
  content: "\e38c";
}
.ph.ph-ny-times-logo:before {
  content: "\e646";
}
.ph.ph-octagon:before {
  content: "\e38e";
}
.ph.ph-office-chair:before {
  content: "\ea46";
}
.ph.ph-onigiri:before {
  content: "\ee2c";
}
.ph.ph-open-ai-logo:before {
  content: "\e7d2";
}
.ph.ph-option:before {
  content: "\e8a8";
}
.ph.ph-orange:before {
  content: "\ee40";
}
.ph.ph-orange-slice:before {
  content: "\ed36";
}
.ph.ph-oven:before {
  content: "\ed8c";
}
.ph.ph-package:before {
  content: "\e390";
}
.ph.ph-paint-brush:before {
  content: "\e6f0";
}
.ph.ph-paint-brush-broad:before {
  content: "\e590";
}
.ph.ph-paint-brush-household:before {
  content: "\e6f2";
}
.ph.ph-paint-bucket:before {
  content: "\e392";
}
.ph.ph-paint-roller:before {
  content: "\e6f4";
}
.ph.ph-palette:before {
  content: "\e6c8";
}
.ph.ph-panorama:before {
  content: "\eaa2";
}
.ph.ph-pants:before {
  content: "\ec88";
}
.ph.ph-paper-plane:before {
  content: "\e394";
}
.ph.ph-paper-plane-right:before {
  content: "\e396";
}
.ph.ph-paper-plane-tilt:before {
  content: "\e398";
}
.ph.ph-paperclip:before {
  content: "\e39a";
}
.ph.ph-paperclip-horizontal:before {
  content: "\e592";
}
.ph.ph-parachute:before {
  content: "\ea7c";
}
.ph.ph-paragraph:before {
  content: "\e960";
}
.ph.ph-parallelogram:before {
  content: "\ecc6";
}
.ph.ph-park:before {
  content: "\ecb2";
}
.ph.ph-password:before {
  content: "\e752";
}
.ph.ph-path:before {
  content: "\e39c";
}
.ph.ph-patreon-logo:before {
  content: "\e98a";
}
.ph.ph-pause:before {
  content: "\e39e";
}
.ph.ph-pause-circle:before {
  content: "\e3a0";
}
.ph.ph-paw-print:before {
  content: "\e648";
}
.ph.ph-paypal-logo:before {
  content: "\e98c";
}
.ph.ph-peace:before {
  content: "\e3a2";
}
.ph.ph-pen:before {
  content: "\e3aa";
}
.ph.ph-pen-nib:before {
  content: "\e3ac";
}
.ph.ph-pen-nib-straight:before {
  content: "\e64a";
}
.ph.ph-pencil:before {
  content: "\e3ae";
}
.ph.ph-pencil-circle:before {
  content: "\e3b0";
}
.ph.ph-pencil-line:before {
  content: "\e3b2";
}
.ph.ph-pencil-ruler:before {
  content: "\e906";
}
.ph.ph-pencil-simple:before {
  content: "\e3b4";
}
.ph.ph-pencil-simple-line:before {
  content: "\ebc6";
}
.ph.ph-pencil-simple-slash:before {
  content: "\ecf6";
}
.ph.ph-pencil-slash:before {
  content: "\ecf8";
}
.ph.ph-pentagon:before {
  content: "\ec7e";
}
.ph.ph-pentagram:before {
  content: "\ec5c";
}
.ph.ph-pepper:before {
  content: "\e94a";
}
.ph.ph-percent:before {
  content: "\e3b6";
}
.ph.ph-person:before {
  content: "\e3a8";
}
.ph.ph-person-arms-spread:before {
  content: "\ecfe";
}
.ph.ph-person-simple:before {
  content: "\e72e";
}
.ph.ph-person-simple-bike:before {
  content: "\e734";
}
.ph.ph-person-simple-circle:before {
  content: "\ee58";
}
.ph.ph-person-simple-hike:before {
  content: "\ed54";
}
.ph.ph-person-simple-run:before {
  content: "\e730";
}
.ph.ph-person-simple-ski:before {
  content: "\e71c";
}
.ph.ph-person-simple-snowboard:before {
  content: "\e71e";
}
.ph.ph-person-simple-swim:before {
  content: "\e736";
}
.ph.ph-person-simple-tai-chi:before {
  content: "\ed5c";
}
.ph.ph-person-simple-throw:before {
  content: "\e732";
}
.ph.ph-person-simple-walk:before {
  content: "\e73a";
}
.ph.ph-perspective:before {
  content: "\ebe6";
}
.ph.ph-phone:before {
  content: "\e3b8";
}
.ph.ph-phone-call:before {
  content: "\e3ba";
}
.ph.ph-phone-disconnect:before {
  content: "\e3bc";
}
.ph.ph-phone-incoming:before {
  content: "\e3be";
}
.ph.ph-phone-list:before {
  content: "\e3cc";
}
.ph.ph-phone-outgoing:before {
  content: "\e3c0";
}
.ph.ph-phone-pause:before {
  content: "\e3ca";
}
.ph.ph-phone-plus:before {
  content: "\ec56";
}
.ph.ph-phone-slash:before {
  content: "\e3c2";
}
.ph.ph-phone-transfer:before {
  content: "\e3c6";
}
.ph.ph-phone-x:before {
  content: "\e3c4";
}
.ph.ph-phosphor-logo:before {
  content: "\e3ce";
}
.ph.ph-pi:before {
  content: "\ec80";
}
.ph.ph-piano-keys:before {
  content: "\e9c8";
}
.ph.ph-picnic-table:before {
  content: "\ee26";
}
.ph.ph-picture-in-picture:before {
  content: "\e64c";
}
.ph.ph-piggy-bank:before {
  content: "\ea04";
}
.ph.ph-pill:before {
  content: "\e700";
}
.ph.ph-ping-pong:before {
  content: "\ea42";
}
.ph.ph-pint-glass:before {
  content: "\edd0";
}
.ph.ph-pinterest-logo:before {
  content: "\e64e";
}
.ph.ph-pinwheel:before {
  content: "\eb9c";
}
.ph.ph-pipe:before {
  content: "\ed86";
}
.ph.ph-pipe-wrench:before {
  content: "\ed88";
}
.ph.ph-pix-logo:before {
  content: "\ecc2";
}
.ph.ph-pizza:before {
  content: "\e796";
}
.ph.ph-placeholder:before {
  content: "\e650";
}
.ph.ph-planet:before {
  content: "\e652";
}
.ph.ph-plant:before {
  content: "\ebae";
}
.ph.ph-play:before {
  content: "\e3d0";
}
.ph.ph-play-circle:before {
  content: "\e3d2";
}
.ph.ph-play-pause:before {
  content: "\e8be";
}
.ph.ph-playlist:before {
  content: "\e6aa";
}
.ph.ph-plug:before {
  content: "\e946";
}
.ph.ph-plug-charging:before {
  content: "\eb5c";
}
.ph.ph-plugs:before {
  content: "\eb56";
}
.ph.ph-plugs-connected:before {
  content: "\eb5a";
}
.ph.ph-plus:before {
  content: "\e3d4";
}
.ph.ph-plus-circle:before {
  content: "\e3d6";
}
.ph.ph-plus-minus:before {
  content: "\e3d8";
}
.ph.ph-plus-square:before {
  content: "\ed4a";
}
.ph.ph-poker-chip:before {
  content: "\e594";
}
.ph.ph-police-car:before {
  content: "\ec4a";
}
.ph.ph-polygon:before {
  content: "\e6d0";
}
.ph.ph-popcorn:before {
  content: "\eb4e";
}
.ph.ph-popsicle:before {
  content: "\ebbe";
}
.ph.ph-potted-plant:before {
  content: "\ec22";
}
.ph.ph-power:before {
  content: "\e3da";
}
.ph.ph-prescription:before {
  content: "\e7a2";
}
.ph.ph-presentation:before {
  content: "\e654";
}
.ph.ph-presentation-chart:before {
  content: "\e656";
}
.ph.ph-printer:before {
  content: "\e3dc";
}
.ph.ph-prohibit:before {
  content: "\e3de";
}
.ph.ph-prohibit-inset:before {
  content: "\e3e0";
}
.ph.ph-projector-screen:before {
  content: "\e658";
}
.ph.ph-projector-screen-chart:before {
  content: "\e65a";
}
.ph.ph-pulse:before {
  content: "\e000";
}
.ph.ph-activity:before {
  content: "\e000";
}
.ph.ph-push-pin:before {
  content: "\e3e2";
}
.ph.ph-push-pin-simple:before {
  content: "\e65c";
}
.ph.ph-push-pin-simple-slash:before {
  content: "\e65e";
}
.ph.ph-push-pin-slash:before {
  content: "\e3e4";
}
.ph.ph-puzzle-piece:before {
  content: "\e596";
}
.ph.ph-qr-code:before {
  content: "\e3e6";
}
.ph.ph-question:before {
  content: "\e3e8";
}
.ph.ph-question-mark:before {
  content: "\e3e9";
}
.ph.ph-queue:before {
  content: "\e6ac";
}
.ph.ph-quotes:before {
  content: "\e660";
}
.ph.ph-rabbit:before {
  content: "\eac2";
}
.ph.ph-racquet:before {
  content: "\ee02";
}
.ph.ph-radical:before {
  content: "\e3ea";
}
.ph.ph-radio:before {
  content: "\e77e";
}
.ph.ph-radio-button:before {
  content: "\eb08";
}
.ph.ph-radioactive:before {
  content: "\e9dc";
}
.ph.ph-rainbow:before {
  content: "\e598";
}
.ph.ph-rainbow-cloud:before {
  content: "\e59a";
}
.ph.ph-ranking:before {
  content: "\ed62";
}
.ph.ph-read-cv-logo:before {
  content: "\ed0c";
}
.ph.ph-receipt:before {
  content: "\e3ec";
}
.ph.ph-receipt-x:before {
  content: "\ed40";
}
.ph.ph-record:before {
  content: "\e3ee";
}
.ph.ph-rectangle:before {
  content: "\e3f0";
}
.ph.ph-rectangle-dashed:before {
  content: "\e3f2";
}
.ph.ph-recycle:before {
  content: "\e75a";
}
.ph.ph-reddit-logo:before {
  content: "\e59c";
}
.ph.ph-repeat:before {
  content: "\e3f6";
}
.ph.ph-repeat-once:before {
  content: "\e3f8";
}
.ph.ph-replit-logo:before {
  content: "\eb8a";
}
.ph.ph-resize:before {
  content: "\ed6e";
}
.ph.ph-rewind:before {
  content: "\e6a8";
}
.ph.ph-rewind-circle:before {
  content: "\e3fa";
}
.ph.ph-road-horizon:before {
  content: "\e838";
}
.ph.ph-robot:before {
  content: "\e762";
}
.ph.ph-rocket:before {
  content: "\e3fc";
}
.ph.ph-rocket-launch:before {
  content: "\e3fe";
}
.ph.ph-rows:before {
  content: "\e5a2";
}
.ph.ph-rows-plus-bottom:before {
  content: "\e59e";
}
.ph.ph-rows-plus-top:before {
  content: "\e5a0";
}
.ph.ph-rss:before {
  content: "\e400";
}
.ph.ph-rss-simple:before {
  content: "\e402";
}
.ph.ph-rug:before {
  content: "\ea1a";
}
.ph.ph-ruler:before {
  content: "\e6b8";
}
.ph.ph-sailboat:before {
  content: "\e78a";
}
.ph.ph-scales:before {
  content: "\e750";
}
.ph.ph-scan:before {
  content: "\ebb6";
}
.ph.ph-scan-smiley:before {
  content: "\ebb4";
}
.ph.ph-scissors:before {
  content: "\eae0";
}
.ph.ph-scooter:before {
  content: "\e820";
}
.ph.ph-screencast:before {
  content: "\e404";
}
.ph.ph-screwdriver:before {
  content: "\e86e";
}
.ph.ph-scribble:before {
  content: "\e806";
}
.ph.ph-scribble-loop:before {
  content: "\e662";
}
.ph.ph-scroll:before {
  content: "\eb7a";
}
.ph.ph-seal:before {
  content: "\e604";
}
.ph.ph-circle-wavy:before {
  content: "\e604";
}
.ph.ph-seal-check:before {
  content: "\e606";
}
.ph.ph-circle-wavy-check:before {
  content: "\e606";
}
.ph.ph-seal-percent:before {
  content: "\e60a";
}
.ph.ph-seal-question:before {
  content: "\e608";
}
.ph.ph-circle-wavy-question:before {
  content: "\e608";
}
.ph.ph-seal-warning:before {
  content: "\e60c";
}
.ph.ph-circle-wavy-warning:before {
  content: "\e60c";
}
.ph.ph-seat:before {
  content: "\eb8e";
}
.ph.ph-seatbelt:before {
  content: "\edfe";
}
.ph.ph-security-camera:before {
  content: "\eca4";
}
.ph.ph-selection:before {
  content: "\e69a";
}
.ph.ph-selection-all:before {
  content: "\e746";
}
.ph.ph-selection-background:before {
  content: "\eaf8";
}
.ph.ph-selection-foreground:before {
  content: "\eaf6";
}
.ph.ph-selection-inverse:before {
  content: "\e744";
}
.ph.ph-selection-plus:before {
  content: "\e69c";
}
.ph.ph-selection-slash:before {
  content: "\e69e";
}
.ph.ph-shapes:before {
  content: "\ec5e";
}
.ph.ph-share:before {
  content: "\e406";
}
.ph.ph-share-fat:before {
  content: "\ed52";
}
.ph.ph-share-network:before {
  content: "\e408";
}
.ph.ph-shield:before {
  content: "\e40a";
}
.ph.ph-shield-check:before {
  content: "\e40c";
}
.ph.ph-shield-checkered:before {
  content: "\e708";
}
.ph.ph-shield-chevron:before {
  content: "\e40e";
}
.ph.ph-shield-plus:before {
  content: "\e706";
}
.ph.ph-shield-slash:before {
  content: "\e410";
}
.ph.ph-shield-star:before {
  content: "\ec34";
}
.ph.ph-shield-warning:before {
  content: "\e412";
}
.ph.ph-shipping-container:before {
  content: "\e78c";
}
.ph.ph-shirt-folded:before {
  content: "\ea92";
}
.ph.ph-shooting-star:before {
  content: "\ecfa";
}
.ph.ph-shopping-bag:before {
  content: "\e416";
}
.ph.ph-shopping-bag-open:before {
  content: "\e418";
}
.ph.ph-shopping-cart:before {
  content: "\e41e";
}
.ph.ph-shopping-cart-simple:before {
  content: "\e420";
}
.ph.ph-shovel:before {
  content: "\e9e6";
}
.ph.ph-shower:before {
  content: "\e776";
}
.ph.ph-shrimp:before {
  content: "\eab4";
}
.ph.ph-shuffle:before {
  content: "\e422";
}
.ph.ph-shuffle-angular:before {
  content: "\e424";
}
.ph.ph-shuffle-simple:before {
  content: "\e426";
}
.ph.ph-sidebar:before {
  content: "\eab6";
}
.ph.ph-sidebar-simple:before {
  content: "\ec24";
}
.ph.ph-sigma:before {
  content: "\eab8";
}
.ph.ph-sign-in:before {
  content: "\e428";
}
.ph.ph-sign-out:before {
  content: "\e42a";
}
.ph.ph-signature:before {
  content: "\ebac";
}
.ph.ph-signpost:before {
  content: "\e89c";
}
.ph.ph-sim-card:before {
  content: "\e664";
}
.ph.ph-siren:before {
  content: "\e9b8";
}
.ph.ph-sketch-logo:before {
  content: "\e42c";
}
.ph.ph-skip-back:before {
  content: "\e5a4";
}
.ph.ph-skip-back-circle:before {
  content: "\e42e";
}
.ph.ph-skip-forward:before {
  content: "\e5a6";
}
.ph.ph-skip-forward-circle:before {
  content: "\e430";
}
.ph.ph-skull:before {
  content: "\e916";
}
.ph.ph-skype-logo:before {
  content: "\e8dc";
}
.ph.ph-slack-logo:before {
  content: "\e5a8";
}
.ph.ph-sliders:before {
  content: "\e432";
}
.ph.ph-sliders-horizontal:before {
  content: "\e434";
}
.ph.ph-slideshow:before {
  content: "\ed32";
}
.ph.ph-smiley:before {
  content: "\e436";
}
.ph.ph-smiley-angry:before {
  content: "\ec62";
}
.ph.ph-smiley-blank:before {
  content: "\e438";
}
.ph.ph-smiley-meh:before {
  content: "\e43a";
}
.ph.ph-smiley-melting:before {
  content: "\ee56";
}
.ph.ph-smiley-nervous:before {
  content: "\e43c";
}
.ph.ph-smiley-sad:before {
  content: "\e43e";
}
.ph.ph-smiley-sticker:before {
  content: "\e440";
}
.ph.ph-smiley-wink:before {
  content: "\e666";
}
.ph.ph-smiley-x-eyes:before {
  content: "\e442";
}
.ph.ph-snapchat-logo:before {
  content: "\e668";
}
.ph.ph-sneaker:before {
  content: "\e80c";
}
.ph.ph-sneaker-move:before {
  content: "\ed60";
}
.ph.ph-snowflake:before {
  content: "\e5aa";
}
.ph.ph-soccer-ball:before {
  content: "\e716";
}
.ph.ph-sock:before {
  content: "\ecce";
}
.ph.ph-solar-panel:before {
  content: "\ed7a";
}
.ph.ph-solar-roof:before {
  content: "\ed7b";
}
.ph.ph-sort-ascending:before {
  content: "\e444";
}
.ph.ph-sort-descending:before {
  content: "\e446";
}
.ph.ph-soundcloud-logo:before {
  content: "\e8de";
}
.ph.ph-spade:before {
  content: "\e448";
}
.ph.ph-sparkle:before {
  content: "\e6a2";
}
.ph.ph-speaker-hifi:before {
  content: "\ea08";
}
.ph.ph-speaker-high:before {
  content: "\e44a";
}
.ph.ph-speaker-low:before {
  content: "\e44c";
}
.ph.ph-speaker-none:before {
  content: "\e44e";
}
.ph.ph-speaker-simple-high:before {
  content: "\e450";
}
.ph.ph-speaker-simple-low:before {
  content: "\e452";
}
.ph.ph-speaker-simple-none:before {
  content: "\e454";
}
.ph.ph-speaker-simple-slash:before {
  content: "\e456";
}
.ph.ph-speaker-simple-x:before {
  content: "\e458";
}
.ph.ph-speaker-slash:before {
  content: "\e45a";
}
.ph.ph-speaker-x:before {
  content: "\e45c";
}
.ph.ph-speedometer:before {
  content: "\ee74";
}
.ph.ph-sphere:before {
  content: "\ee66";
}
.ph.ph-spinner:before {
  content: "\e66a";
}
.ph.ph-spinner-ball:before {
  content: "\ee28";
}
.ph.ph-spinner-gap:before {
  content: "\e66c";
}
.ph.ph-spiral:before {
  content: "\e9fa";
}
.ph.ph-split-horizontal:before {
  content: "\e872";
}
.ph.ph-split-vertical:before {
  content: "\e876";
}
.ph.ph-spotify-logo:before {
  content: "\e66e";
}
.ph.ph-spray-bottle:before {
  content: "\e7e4";
}
.ph.ph-square:before {
  content: "\e45e";
}
.ph.ph-square-half:before {
  content: "\e462";
}
.ph.ph-square-half-bottom:before {
  content: "\eb16";
}
.ph.ph-square-logo:before {
  content: "\e690";
}
.ph.ph-square-split-horizontal:before {
  content: "\e870";
}
.ph.ph-square-split-vertical:before {
  content: "\e874";
}
.ph.ph-squares-four:before {
  content: "\e464";
}
.ph.ph-stack:before {
  content: "\e466";
}
.ph.ph-stack-minus:before {
  content: "\edf4";
}
.ph.ph-stack-overflow-logo:before {
  content: "\eb78";
}
.ph.ph-stack-plus:before {
  content: "\edf6";
}
.ph.ph-stack-simple:before {
  content: "\e468";
}
.ph.ph-stairs:before {
  content: "\e8ec";
}
.ph.ph-stamp:before {
  content: "\ea48";
}
.ph.ph-standard-definition:before {
  content: "\ea90";
}
.ph.ph-star:before {
  content: "\e46a";
}
.ph.ph-star-and-crescent:before {
  content: "\ecf4";
}
.ph.ph-star-four:before {
  content: "\e6a4";
}
.ph.ph-star-half:before {
  content: "\e70a";
}
.ph.ph-star-of-david:before {
  content: "\e89e";
}
.ph.ph-steam-logo:before {
  content: "\ead4";
}
.ph.ph-steering-wheel:before {
  content: "\e9ac";
}
.ph.ph-steps:before {
  content: "\ecbe";
}
.ph.ph-stethoscope:before {
  content: "\e7ea";
}
.ph.ph-sticker:before {
  content: "\e5ac";
}
.ph.ph-stool:before {
  content: "\ea44";
}
.ph.ph-stop:before {
  content: "\e46c";
}
.ph.ph-stop-circle:before {
  content: "\e46e";
}
.ph.ph-storefront:before {
  content: "\e470";
}
.ph.ph-strategy:before {
  content: "\ea3a";
}
.ph.ph-stripe-logo:before {
  content: "\e698";
}
.ph.ph-student:before {
  content: "\e73e";
}
.ph.ph-subset-of:before {
  content: "\edc0";
}
.ph.ph-subset-proper-of:before {
  content: "\edb6";
}
.ph.ph-subtitles:before {
  content: "\e1a8";
}
.ph.ph-subtitles-slash:before {
  content: "\e1a6";
}
.ph.ph-subtract:before {
  content: "\ebd6";
}
.ph.ph-subtract-square:before {
  content: "\ebd4";
}
.ph.ph-subway:before {
  content: "\e498";
}
.ph.ph-suitcase:before {
  content: "\e5ae";
}
.ph.ph-suitcase-rolling:before {
  content: "\e9b0";
}
.ph.ph-suitcase-simple:before {
  content: "\e5b0";
}
.ph.ph-sun:before {
  content: "\e472";
}
.ph.ph-sun-dim:before {
  content: "\e474";
}
.ph.ph-sun-horizon:before {
  content: "\e5b6";
}
.ph.ph-sunglasses:before {
  content: "\e816";
}
.ph.ph-superset-of:before {
  content: "\edb8";
}
.ph.ph-superset-proper-of:before {
  content: "\edb4";
}
.ph.ph-swap:before {
  content: "\e83c";
}
.ph.ph-swatches:before {
  content: "\e5b8";
}
.ph.ph-swimming-pool:before {
  content: "\ecb6";
}
.ph.ph-sword:before {
  content: "\e5ba";
}
.ph.ph-synagogue:before {
  content: "\ecec";
}
.ph.ph-syringe:before {
  content: "\e968";
}
.ph.ph-t-shirt:before {
  content: "\e670";
}
.ph.ph-table:before {
  content: "\e476";
}
.ph.ph-tabs:before {
  content: "\e778";
}
.ph.ph-tag:before {
  content: "\e478";
}
.ph.ph-tag-chevron:before {
  content: "\e672";
}
.ph.ph-tag-simple:before {
  content: "\e47a";
}
.ph.ph-target:before {
  content: "\e47c";
}
.ph.ph-taxi:before {
  content: "\e902";
}
.ph.ph-tea-bag:before {
  content: "\e8e6";
}
.ph.ph-telegram-logo:before {
  content: "\e5bc";
}
.ph.ph-television:before {
  content: "\e754";
}
.ph.ph-television-simple:before {
  content: "\eae6";
}
.ph.ph-tennis-ball:before {
  content: "\e720";
}
.ph.ph-tent:before {
  content: "\e8ba";
}
.ph.ph-terminal:before {
  content: "\e47e";
}
.ph.ph-terminal-window:before {
  content: "\eae8";
}
.ph.ph-test-tube:before {
  content: "\e7a0";
}
.ph.ph-text-a-underline:before {
  content: "\ed34";
}
.ph.ph-text-aa:before {
  content: "\e6ee";
}
.ph.ph-text-align-center:before {
  content: "\e480";
}
.ph.ph-text-align-justify:before {
  content: "\e482";
}
.ph.ph-text-align-left:before {
  content: "\e484";
}
.ph.ph-text-align-right:before {
  content: "\e486";
}
.ph.ph-text-b:before {
  content: "\e5be";
}
.ph.ph-text-bolder:before {
  content: "\e5be";
}
.ph.ph-text-columns:before {
  content: "\ec96";
}
.ph.ph-text-h:before {
  content: "\e6ba";
}
.ph.ph-text-h-five:before {
  content: "\e6c4";
}
.ph.ph-text-h-four:before {
  content: "\e6c2";
}
.ph.ph-text-h-one:before {
  content: "\e6bc";
}
.ph.ph-text-h-six:before {
  content: "\e6c6";
}
.ph.ph-text-h-three:before {
  content: "\e6c0";
}
.ph.ph-text-h-two:before {
  content: "\e6be";
}
.ph.ph-text-indent:before {
  content: "\ea1e";
}
.ph.ph-text-italic:before {
  content: "\e5c0";
}
.ph.ph-text-outdent:before {
  content: "\ea1c";
}
.ph.ph-text-strikethrough:before {
  content: "\e5c2";
}
.ph.ph-text-subscript:before {
  content: "\ec98";
}
.ph.ph-text-superscript:before {
  content: "\ec9a";
}
.ph.ph-text-t:before {
  content: "\e48a";
}
.ph.ph-text-t-slash:before {
  content: "\e488";
}
.ph.ph-text-underline:before {
  content: "\e5c4";
}
.ph.ph-textbox:before {
  content: "\eb0a";
}
.ph.ph-thermometer:before {
  content: "\e5c6";
}
.ph.ph-thermometer-cold:before {
  content: "\e5c8";
}
.ph.ph-thermometer-hot:before {
  content: "\e5ca";
}
.ph.ph-thermometer-simple:before {
  content: "\e5cc";
}
.ph.ph-threads-logo:before {
  content: "\ed9e";
}
.ph.ph-three-d:before {
  content: "\ea5a";
}
.ph.ph-thumbs-down:before {
  content: "\e48c";
}
.ph.ph-thumbs-up:before {
  content: "\e48e";
}
.ph.ph-ticket:before {
  content: "\e490";
}
.ph.ph-tidal-logo:before {
  content: "\ed1c";
}
.ph.ph-tiktok-logo:before {
  content: "\eaf2";
}
.ph.ph-tilde:before {
  content: "\eda8";
}
.ph.ph-timer:before {
  content: "\e492";
}
.ph.ph-tip-jar:before {
  content: "\e7e2";
}
.ph.ph-tipi:before {
  content: "\ed30";
}
.ph.ph-tire:before {
  content: "\edd2";
}
.ph.ph-toggle-left:before {
  content: "\e674";
}
.ph.ph-toggle-right:before {
  content: "\e676";
}
.ph.ph-toilet:before {
  content: "\e79a";
}
.ph.ph-toilet-paper:before {
  content: "\e79c";
}
.ph.ph-toolbox:before {
  content: "\eca0";
}
.ph.ph-tooth:before {
  content: "\e9cc";
}
.ph.ph-tornado:before {
  content: "\e88c";
}
.ph.ph-tote:before {
  content: "\e494";
}
.ph.ph-tote-simple:before {
  content: "\e678";
}
.ph.ph-towel:before {
  content: "\ede6";
}
.ph.ph-tractor:before {
  content: "\ec6e";
}
.ph.ph-trademark:before {
  content: "\e9f0";
}
.ph.ph-trademark-registered:before {
  content: "\e3f4";
}
.ph.ph-traffic-cone:before {
  content: "\e9a8";
}
.ph.ph-traffic-sign:before {
  content: "\e67a";
}
.ph.ph-traffic-signal:before {
  content: "\e9aa";
}
.ph.ph-train:before {
  content: "\e496";
}
.ph.ph-train-regional:before {
  content: "\e49e";
}
.ph.ph-train-simple:before {
  content: "\e4a0";
}
.ph.ph-tram:before {
  content: "\e9ec";
}
.ph.ph-translate:before {
  content: "\e4a2";
}
.ph.ph-trash:before {
  content: "\e4a6";
}
.ph.ph-trash-simple:before {
  content: "\e4a8";
}
.ph.ph-tray:before {
  content: "\e4aa";
}
.ph.ph-tray-arrow-down:before {
  content: "\e010";
}
.ph.ph-archive-tray:before {
  content: "\e010";
}
.ph.ph-tray-arrow-up:before {
  content: "\ee52";
}
.ph.ph-treasure-chest:before {
  content: "\ede2";
}
.ph.ph-tree:before {
  content: "\e6da";
}
.ph.ph-tree-evergreen:before {
  content: "\e6dc";
}
.ph.ph-tree-palm:before {
  content: "\e91a";
}
.ph.ph-tree-structure:before {
  content: "\e67c";
}
.ph.ph-tree-view:before {
  content: "\ee48";
}
.ph.ph-trend-down:before {
  content: "\e4ac";
}
.ph.ph-trend-up:before {
  content: "\e4ae";
}
.ph.ph-triangle:before {
  content: "\e4b0";
}
.ph.ph-triangle-dashed:before {
  content: "\e4b2";
}
.ph.ph-trolley:before {
  content: "\e5b2";
}
.ph.ph-trolley-suitcase:before {
  content: "\e5b4";
}
.ph.ph-trophy:before {
  content: "\e67e";
}
.ph.ph-truck:before {
  content: "\e4b4";
}
.ph.ph-truck-trailer:before {
  content: "\e4b6";
}
.ph.ph-tumblr-logo:before {
  content: "\e8d4";
}
.ph.ph-twitch-logo:before {
  content: "\e5ce";
}
.ph.ph-twitter-logo:before {
  content: "\e4ba";
}
.ph.ph-umbrella:before {
  content: "\e684";
}
.ph.ph-umbrella-simple:before {
  content: "\e686";
}
.ph.ph-union:before {
  content: "\edbe";
}
.ph.ph-unite:before {
  content: "\e87e";
}
.ph.ph-unite-square:before {
  content: "\e878";
}
.ph.ph-upload:before {
  content: "\e4be";
}
.ph.ph-upload-simple:before {
  content: "\e4c0";
}
.ph.ph-usb:before {
  content: "\e956";
}
.ph.ph-user:before {
  content: "\e4c2";
}
.ph.ph-user-check:before {
  content: "\eafa";
}
.ph.ph-user-circle:before {
  content: "\e4c4";
}
.ph.ph-user-circle-check:before {
  content: "\ec38";
}
.ph.ph-user-circle-dashed:before {
  content: "\ec36";
}
.ph.ph-user-circle-gear:before {
  content: "\e4c6";
}
.ph.ph-user-circle-minus:before {
  content: "\e4c8";
}
.ph.ph-user-circle-plus:before {
  content: "\e4ca";
}
.ph.ph-user-focus:before {
  content: "\e6fc";
}
.ph.ph-user-gear:before {
  content: "\e4cc";
}
.ph.ph-user-list:before {
  content: "\e73c";
}
.ph.ph-user-minus:before {
  content: "\e4ce";
}
.ph.ph-user-plus:before {
  content: "\e4d0";
}
.ph.ph-user-rectangle:before {
  content: "\e4d2";
}
.ph.ph-user-sound:before {
  content: "\eca8";
}
.ph.ph-user-square:before {
  content: "\e4d4";
}
.ph.ph-user-switch:before {
  content: "\e756";
}
.ph.ph-users:before {
  content: "\e4d6";
}
.ph.ph-users-four:before {
  content: "\e68c";
}
.ph.ph-users-three:before {
  content: "\e68e";
}
.ph.ph-van:before {
  content: "\e826";
}
.ph.ph-vault:before {
  content: "\e76e";
}
.ph.ph-vector-three:before {
  content: "\ee62";
}
.ph.ph-vector-two:before {
  content: "\ee64";
}
.ph.ph-vibrate:before {
  content: "\e4d8";
}
.ph.ph-video:before {
  content: "\e740";
}
.ph.ph-video-camera:before {
  content: "\e4da";
}
.ph.ph-video-camera-slash:before {
  content: "\e4dc";
}
.ph.ph-video-conference:before {
  content: "\edce";
}
.ph.ph-vignette:before {
  content: "\eba2";
}
.ph.ph-vinyl-record:before {
  content: "\ecac";
}
.ph.ph-virtual-reality:before {
  content: "\e7b8";
}
.ph.ph-virus:before {
  content: "\e7d6";
}
.ph.ph-visor:before {
  content: "\ee2a";
}
.ph.ph-voicemail:before {
  content: "\e4de";
}
.ph.ph-volleyball:before {
  content: "\e726";
}
.ph.ph-wall:before {
  content: "\e688";
}
.ph.ph-wallet:before {
  content: "\e68a";
}
.ph.ph-warehouse:before {
  content: "\ecd4";
}
.ph.ph-warning:before {
  content: "\e4e0";
}
.ph.ph-warning-circle:before {
  content: "\e4e2";
}
.ph.ph-warning-diamond:before {
  content: "\e7fc";
}
.ph.ph-warning-octagon:before {
  content: "\e4e4";
}
.ph.ph-washing-machine:before {
  content: "\ede8";
}
.ph.ph-watch:before {
  content: "\e4e6";
}
.ph.ph-wave-sawtooth:before {
  content: "\ea9c";
}
.ph.ph-wave-sine:before {
  content: "\ea9a";
}
.ph.ph-wave-square:before {
  content: "\ea9e";
}
.ph.ph-wave-triangle:before {
  content: "\eaa0";
}
.ph.ph-waveform:before {
  content: "\e802";
}
.ph.ph-waveform-slash:before {
  content: "\e800";
}
.ph.ph-waves:before {
  content: "\e6de";
}
.ph.ph-webcam:before {
  content: "\e9b2";
}
.ph.ph-webcam-slash:before {
  content: "\ecdc";
}
.ph.ph-webhooks-logo:before {
  content: "\ecae";
}
.ph.ph-wechat-logo:before {
  content: "\e8d2";
}
.ph.ph-whatsapp-logo:before {
  content: "\e5d0";
}
.ph.ph-wheelchair:before {
  content: "\e4e8";
}
.ph.ph-wheelchair-motion:before {
  content: "\e89a";
}
.ph.ph-wifi-high:before {
  content: "\e4ea";
}
.ph.ph-wifi-low:before {
  content: "\e4ec";
}
.ph.ph-wifi-medium:before {
  content: "\e4ee";
}
.ph.ph-wifi-none:before {
  content: "\e4f0";
}
.ph.ph-wifi-slash:before {
  content: "\e4f2";
}
.ph.ph-wifi-x:before {
  content: "\e4f4";
}
.ph.ph-wind:before {
  content: "\e5d2";
}
.ph.ph-windmill:before {
  content: "\e9f8";
}
.ph.ph-windows-logo:before {
  content: "\e692";
}
.ph.ph-wine:before {
  content: "\e6b2";
}
.ph.ph-wrench:before {
  content: "\e5d4";
}
.ph.ph-x:before {
  content: "\e4f6";
}
.ph.ph-x-circle:before {
  content: "\e4f8";
}
.ph.ph-x-logo:before {
  content: "\e4bc";
}
.ph.ph-x-square:before {
  content: "\e4fa";
}
.ph.ph-yarn:before {
  content: "\ed9a";
}
.ph.ph-yin-yang:before {
  content: "\e92a";
}
.ph.ph-youtube-logo:before {
  content: "\e4fc";
}


/* --- PHOSPHOR FILL --- */

@font-face {
  font-family: "Phosphor-Fill";
  src:
    url("/fonts/Phosphor-Fill.woff2") format("woff2"),
    url("/fonts/Phosphor-Fill.woff") format("woff"),
    url("/fonts/Phosphor-Fill.ttf") format("truetype"),
    url("/fonts/Phosphor-Fill.svg#Phosphor-Fill") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.ph-fill {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor-Fill" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ph-fill.ph-acorn:before {
  content: "\eb9a";
}
.ph-fill.ph-address-book:before {
  content: "\e6f8";
}
.ph-fill.ph-address-book-tabs:before {
  content: "\ee4e";
}
.ph-fill.ph-air-traffic-control:before {
  content: "\ecd8";
}
.ph-fill.ph-airplane:before {
  content: "\e002";
}
.ph-fill.ph-airplane-in-flight:before {
  content: "\e4fe";
}
.ph-fill.ph-airplane-landing:before {
  content: "\e502";
}
.ph-fill.ph-airplane-takeoff:before {
  content: "\e504";
}
.ph-fill.ph-airplane-taxiing:before {
  content: "\e500";
}
.ph-fill.ph-airplane-tilt:before {
  content: "\e5d6";
}
.ph-fill.ph-airplay:before {
  content: "\e004";
}
.ph-fill.ph-alarm:before {
  content: "\e006";
}
.ph-fill.ph-alien:before {
  content: "\e8a6";
}
.ph-fill.ph-align-bottom:before {
  content: "\e506";
}
.ph-fill.ph-align-bottom-simple:before {
  content: "\eb0c";
}
.ph-fill.ph-align-center-horizontal:before {
  content: "\e50a";
}
.ph-fill.ph-align-center-horizontal-simple:before {
  content: "\eb0e";
}
.ph-fill.ph-align-center-vertical:before {
  content: "\e50c";
}
.ph-fill.ph-align-center-vertical-simple:before {
  content: "\eb10";
}
.ph-fill.ph-align-left:before {
  content: "\e50e";
}
.ph-fill.ph-align-left-simple:before {
  content: "\eaee";
}
.ph-fill.ph-align-right:before {
  content: "\e510";
}
.ph-fill.ph-align-right-simple:before {
  content: "\eb12";
}
.ph-fill.ph-align-top:before {
  content: "\e512";
}
.ph-fill.ph-align-top-simple:before {
  content: "\eb14";
}
.ph-fill.ph-amazon-logo:before {
  content: "\e96c";
}
.ph-fill.ph-ambulance:before {
  content: "\e572";
}
.ph-fill.ph-anchor:before {
  content: "\e514";
}
.ph-fill.ph-anchor-simple:before {
  content: "\e5d8";
}
.ph-fill.ph-android-logo:before {
  content: "\e008";
}
.ph-fill.ph-angle:before {
  content: "\e7bc";
}
.ph-fill.ph-angular-logo:before {
  content: "\eb80";
}
.ph-fill.ph-aperture:before {
  content: "\e00a";
}
.ph-fill.ph-app-store-logo:before {
  content: "\e974";
}
.ph-fill.ph-app-window:before {
  content: "\e5da";
}
.ph-fill.ph-apple-logo:before {
  content: "\e516";
}
.ph-fill.ph-apple-podcasts-logo:before {
  content: "\eb96";
}
.ph-fill.ph-approximate-equals:before {
  content: "\edaa";
}
.ph-fill.ph-archive:before {
  content: "\e00c";
}
.ph-fill.ph-armchair:before {
  content: "\e012";
}
.ph-fill.ph-arrow-arc-left:before {
  content: "\e014";
}
.ph-fill.ph-arrow-arc-right:before {
  content: "\e016";
}
.ph-fill.ph-arrow-bend-double-up-left:before {
  content: "\e03a";
}
.ph-fill.ph-arrow-bend-double-up-right:before {
  content: "\e03c";
}
.ph-fill.ph-arrow-bend-down-left:before {
  content: "\e018";
}
.ph-fill.ph-arrow-bend-down-right:before {
  content: "\e01a";
}
.ph-fill.ph-arrow-bend-left-down:before {
  content: "\e01c";
}
.ph-fill.ph-arrow-bend-left-up:before {
  content: "\e01e";
}
.ph-fill.ph-arrow-bend-right-down:before {
  content: "\e020";
}
.ph-fill.ph-arrow-bend-right-up:before {
  content: "\e022";
}
.ph-fill.ph-arrow-bend-up-left:before {
  content: "\e024";
}
.ph-fill.ph-arrow-bend-up-right:before {
  content: "\e026";
}
.ph-fill.ph-arrow-circle-down:before {
  content: "\e028";
}
.ph-fill.ph-arrow-circle-down-left:before {
  content: "\e02a";
}
.ph-fill.ph-arrow-circle-down-right:before {
  content: "\e02c";
}
.ph-fill.ph-arrow-circle-left:before {
  content: "\e05a";
}
.ph-fill.ph-arrow-circle-right:before {
  content: "\e02e";
}
.ph-fill.ph-arrow-circle-up:before {
  content: "\e030";
}
.ph-fill.ph-arrow-circle-up-left:before {
  content: "\e032";
}
.ph-fill.ph-arrow-circle-up-right:before {
  content: "\e034";
}
.ph-fill.ph-arrow-clockwise:before {
  content: "\e036";
}
.ph-fill.ph-arrow-counter-clockwise:before {
  content: "\e038";
}
.ph-fill.ph-arrow-down:before {
  content: "\e03e";
}
.ph-fill.ph-arrow-down-left:before {
  content: "\e040";
}
.ph-fill.ph-arrow-down-right:before {
  content: "\e042";
}
.ph-fill.ph-arrow-elbow-down-left:before {
  content: "\e044";
}
.ph-fill.ph-arrow-elbow-down-right:before {
  content: "\e046";
}
.ph-fill.ph-arrow-elbow-left:before {
  content: "\e048";
}
.ph-fill.ph-arrow-elbow-left-down:before {
  content: "\e04a";
}
.ph-fill.ph-arrow-elbow-left-up:before {
  content: "\e04c";
}
.ph-fill.ph-arrow-elbow-right:before {
  content: "\e04e";
}
.ph-fill.ph-arrow-elbow-right-down:before {
  content: "\e050";
}
.ph-fill.ph-arrow-elbow-right-up:before {
  content: "\e052";
}
.ph-fill.ph-arrow-elbow-up-left:before {
  content: "\e054";
}
.ph-fill.ph-arrow-elbow-up-right:before {
  content: "\e056";
}
.ph-fill.ph-arrow-fat-down:before {
  content: "\e518";
}
.ph-fill.ph-arrow-fat-left:before {
  content: "\e51a";
}
.ph-fill.ph-arrow-fat-line-down:before {
  content: "\e51c";
}
.ph-fill.ph-arrow-fat-line-left:before {
  content: "\e51e";
}
.ph-fill.ph-arrow-fat-line-right:before {
  content: "\e520";
}
.ph-fill.ph-arrow-fat-line-up:before {
  content: "\e522";
}
.ph-fill.ph-arrow-fat-lines-down:before {
  content: "\e524";
}
.ph-fill.ph-arrow-fat-lines-left:before {
  content: "\e526";
}
.ph-fill.ph-arrow-fat-lines-right:before {
  content: "\e528";
}
.ph-fill.ph-arrow-fat-lines-up:before {
  content: "\e52a";
}
.ph-fill.ph-arrow-fat-right:before {
  content: "\e52c";
}
.ph-fill.ph-arrow-fat-up:before {
  content: "\e52e";
}
.ph-fill.ph-arrow-left:before {
  content: "\e058";
}
.ph-fill.ph-arrow-line-down:before {
  content: "\e05c";
}
.ph-fill.ph-arrow-line-down-left:before {
  content: "\e05e";
}
.ph-fill.ph-arrow-line-down-right:before {
  content: "\e060";
}
.ph-fill.ph-arrow-line-left:before {
  content: "\e062";
}
.ph-fill.ph-arrow-line-right:before {
  content: "\e064";
}
.ph-fill.ph-arrow-line-up:before {
  content: "\e066";
}
.ph-fill.ph-arrow-line-up-left:before {
  content: "\e068";
}
.ph-fill.ph-arrow-line-up-right:before {
  content: "\e06a";
}
.ph-fill.ph-arrow-right:before {
  content: "\e06c";
}
.ph-fill.ph-arrow-square-down:before {
  content: "\e06e";
}
.ph-fill.ph-arrow-square-down-left:before {
  content: "\e070";
}
.ph-fill.ph-arrow-square-down-right:before {
  content: "\e072";
}
.ph-fill.ph-arrow-square-in:before {
  content: "\e5dc";
}
.ph-fill.ph-arrow-square-left:before {
  content: "\e074";
}
.ph-fill.ph-arrow-square-out:before {
  content: "\e5de";
}
.ph-fill.ph-arrow-square-right:before {
  content: "\e076";
}
.ph-fill.ph-arrow-square-up:before {
  content: "\e078";
}
.ph-fill.ph-arrow-square-up-left:before {
  content: "\e07a";
}
.ph-fill.ph-arrow-square-up-right:before {
  content: "\e07c";
}
.ph-fill.ph-arrow-u-down-left:before {
  content: "\e07e";
}
.ph-fill.ph-arrow-u-down-right:before {
  content: "\e080";
}
.ph-fill.ph-arrow-u-left-down:before {
  content: "\e082";
}
.ph-fill.ph-arrow-u-left-up:before {
  content: "\e084";
}
.ph-fill.ph-arrow-u-right-down:before {
  content: "\e086";
}
.ph-fill.ph-arrow-u-right-up:before {
  content: "\e088";
}
.ph-fill.ph-arrow-u-up-left:before {
  content: "\e08a";
}
.ph-fill.ph-arrow-u-up-right:before {
  content: "\e08c";
}
.ph-fill.ph-arrow-up:before {
  content: "\e08e";
}
.ph-fill.ph-arrow-up-left:before {
  content: "\e090";
}
.ph-fill.ph-arrow-up-right:before {
  content: "\e092";
}
.ph-fill.ph-arrows-clockwise:before {
  content: "\e094";
}
.ph-fill.ph-arrows-counter-clockwise:before {
  content: "\e096";
}
.ph-fill.ph-arrows-down-up:before {
  content: "\e098";
}
.ph-fill.ph-arrows-horizontal:before {
  content: "\eb06";
}
.ph-fill.ph-arrows-in:before {
  content: "\e09a";
}
.ph-fill.ph-arrows-in-cardinal:before {
  content: "\e09c";
}
.ph-fill.ph-arrows-in-line-horizontal:before {
  content: "\e530";
}
.ph-fill.ph-arrows-in-line-vertical:before {
  content: "\e532";
}
.ph-fill.ph-arrows-in-simple:before {
  content: "\e09e";
}
.ph-fill.ph-arrows-left-right:before {
  content: "\e0a0";
}
.ph-fill.ph-arrows-merge:before {
  content: "\ed3e";
}
.ph-fill.ph-arrows-out:before {
  content: "\e0a2";
}
.ph-fill.ph-arrows-out-cardinal:before {
  content: "\e0a4";
}
.ph-fill.ph-arrows-out-line-horizontal:before {
  content: "\e534";
}
.ph-fill.ph-arrows-out-line-vertical:before {
  content: "\e536";
}
.ph-fill.ph-arrows-out-simple:before {
  content: "\e0a6";
}
.ph-fill.ph-arrows-split:before {
  content: "\ed3c";
}
.ph-fill.ph-arrows-vertical:before {
  content: "\eb04";
}
.ph-fill.ph-article:before {
  content: "\e0a8";
}
.ph-fill.ph-article-medium:before {
  content: "\e5e0";
}
.ph-fill.ph-article-ny-times:before {
  content: "\e5e2";
}
.ph-fill.ph-asclepius:before {
  content: "\ee34";
}
.ph-fill.ph-caduceus:before {
  content: "\ee34";
}
.ph-fill.ph-asterisk:before {
  content: "\e0aa";
}
.ph-fill.ph-asterisk-simple:before {
  content: "\e832";
}
.ph-fill.ph-at:before {
  content: "\e0ac";
}
.ph-fill.ph-atom:before {
  content: "\e5e4";
}
.ph-fill.ph-avocado:before {
  content: "\ee04";
}
.ph-fill.ph-axe:before {
  content: "\e9fc";
}
.ph-fill.ph-baby:before {
  content: "\e774";
}
.ph-fill.ph-baby-carriage:before {
  content: "\e818";
}
.ph-fill.ph-backpack:before {
  content: "\e922";
}
.ph-fill.ph-backspace:before {
  content: "\e0ae";
}
.ph-fill.ph-bag:before {
  content: "\e0b0";
}
.ph-fill.ph-bag-simple:before {
  content: "\e5e6";
}
.ph-fill.ph-balloon:before {
  content: "\e76c";
}
.ph-fill.ph-bandaids:before {
  content: "\e0b2";
}
.ph-fill.ph-bank:before {
  content: "\e0b4";
}
.ph-fill.ph-barbell:before {
  content: "\e0b6";
}
.ph-fill.ph-barcode:before {
  content: "\e0b8";
}
.ph-fill.ph-barn:before {
  content: "\ec72";
}
.ph-fill.ph-barricade:before {
  content: "\e948";
}
.ph-fill.ph-baseball:before {
  content: "\e71a";
}
.ph-fill.ph-baseball-cap:before {
  content: "\ea28";
}
.ph-fill.ph-baseball-helmet:before {
  content: "\ee4a";
}
.ph-fill.ph-basket:before {
  content: "\e964";
}
.ph-fill.ph-basketball:before {
  content: "\e724";
}
.ph-fill.ph-bathtub:before {
  content: "\e81e";
}
.ph-fill.ph-battery-charging:before {
  content: "\e0ba";
}
.ph-fill.ph-battery-charging-vertical:before {
  content: "\e0bc";
}
.ph-fill.ph-battery-empty:before {
  content: "\e0be";
}
.ph-fill.ph-battery-full:before {
  content: "\e0c0";
}
.ph-fill.ph-battery-high:before {
  content: "\e0c2";
}
.ph-fill.ph-battery-low:before {
  content: "\e0c4";
}
.ph-fill.ph-battery-medium:before {
  content: "\e0c6";
}
.ph-fill.ph-battery-plus:before {
  content: "\e808";
}
.ph-fill.ph-battery-plus-vertical:before {
  content: "\ec50";
}
.ph-fill.ph-battery-vertical-empty:before {
  content: "\e7c6";
}
.ph-fill.ph-battery-vertical-full:before {
  content: "\e7c4";
}
.ph-fill.ph-battery-vertical-high:before {
  content: "\e7c2";
}
.ph-fill.ph-battery-vertical-low:before {
  content: "\e7be";
}
.ph-fill.ph-battery-vertical-medium:before {
  content: "\e7c0";
}
.ph-fill.ph-battery-warning:before {
  content: "\e0c8";
}
.ph-fill.ph-battery-warning-vertical:before {
  content: "\e0ca";
}
.ph-fill.ph-beach-ball:before {
  content: "\ed24";
}
.ph-fill.ph-beanie:before {
  content: "\ea2a";
}
.ph-fill.ph-bed:before {
  content: "\e0cc";
}
.ph-fill.ph-beer-bottle:before {
  content: "\e7b0";
}
.ph-fill.ph-beer-stein:before {
  content: "\eb62";
}
.ph-fill.ph-behance-logo:before {
  content: "\e7f4";
}
.ph-fill.ph-bell:before {
  content: "\e0ce";
}
.ph-fill.ph-bell-ringing:before {
  content: "\e5e8";
}
.ph-fill.ph-bell-simple:before {
  content: "\e0d0";
}
.ph-fill.ph-bell-simple-ringing:before {
  content: "\e5ea";
}
.ph-fill.ph-bell-simple-slash:before {
  content: "\e0d2";
}
.ph-fill.ph-bell-simple-z:before {
  content: "\e5ec";
}
.ph-fill.ph-bell-slash:before {
  content: "\e0d4";
}
.ph-fill.ph-bell-z:before {
  content: "\e5ee";
}
.ph-fill.ph-belt:before {
  content: "\ea2c";
}
.ph-fill.ph-bezier-curve:before {
  content: "\eb00";
}
.ph-fill.ph-bicycle:before {
  content: "\e0d6";
}
.ph-fill.ph-binary:before {
  content: "\ee60";
}
.ph-fill.ph-binoculars:before {
  content: "\ea64";
}
.ph-fill.ph-biohazard:before {
  content: "\e9e0";
}
.ph-fill.ph-bird:before {
  content: "\e72c";
}
.ph-fill.ph-blueprint:before {
  content: "\eda0";
}
.ph-fill.ph-bluetooth:before {
  content: "\e0da";
}
.ph-fill.ph-bluetooth-connected:before {
  content: "\e0dc";
}
.ph-fill.ph-bluetooth-slash:before {
  content: "\e0de";
}
.ph-fill.ph-bluetooth-x:before {
  content: "\e0e0";
}
.ph-fill.ph-boat:before {
  content: "\e786";
}
.ph-fill.ph-bomb:before {
  content: "\ee0a";
}
.ph-fill.ph-bone:before {
  content: "\e7f2";
}
.ph-fill.ph-book:before {
  content: "\e0e2";
}
.ph-fill.ph-book-bookmark:before {
  content: "\e0e4";
}
.ph-fill.ph-book-open:before {
  content: "\e0e6";
}
.ph-fill.ph-book-open-text:before {
  content: "\e8f2";
}
.ph-fill.ph-book-open-user:before {
  content: "\ede0";
}
.ph-fill.ph-bookmark:before {
  content: "\e0e8";
}
.ph-fill.ph-bookmark-simple:before {
  content: "\e0ea";
}
.ph-fill.ph-bookmarks:before {
  content: "\e0ec";
}
.ph-fill.ph-bookmarks-simple:before {
  content: "\e5f0";
}
.ph-fill.ph-books:before {
  content: "\e758";
}
.ph-fill.ph-boot:before {
  content: "\ecca";
}
.ph-fill.ph-boules:before {
  content: "\e722";
}
.ph-fill.ph-bounding-box:before {
  content: "\e6ce";
}
.ph-fill.ph-bowl-food:before {
  content: "\eaa4";
}
.ph-fill.ph-bowl-steam:before {
  content: "\e8e4";
}
.ph-fill.ph-bowling-ball:before {
  content: "\ea34";
}
.ph-fill.ph-box-arrow-down:before {
  content: "\e00e";
}
.ph-fill.ph-archive-box:before {
  content: "\e00e";
}
.ph-fill.ph-box-arrow-up:before {
  content: "\ee54";
}
.ph-fill.ph-boxing-glove:before {
  content: "\ea36";
}
.ph-fill.ph-brackets-angle:before {
  content: "\e862";
}
.ph-fill.ph-brackets-curly:before {
  content: "\e860";
}
.ph-fill.ph-brackets-round:before {
  content: "\e864";
}
.ph-fill.ph-brackets-square:before {
  content: "\e85e";
}
.ph-fill.ph-brain:before {
  content: "\e74e";
}
.ph-fill.ph-brandy:before {
  content: "\e6b4";
}
.ph-fill.ph-bread:before {
  content: "\e81c";
}
.ph-fill.ph-bridge:before {
  content: "\ea68";
}
.ph-fill.ph-briefcase:before {
  content: "\e0ee";
}
.ph-fill.ph-briefcase-metal:before {
  content: "\e5f2";
}
.ph-fill.ph-broadcast:before {
  content: "\e0f2";
}
.ph-fill.ph-broom:before {
  content: "\ec54";
}
.ph-fill.ph-browser:before {
  content: "\e0f4";
}
.ph-fill.ph-browsers:before {
  content: "\e0f6";
}
.ph-fill.ph-bug:before {
  content: "\e5f4";
}
.ph-fill.ph-bug-beetle:before {
  content: "\e5f6";
}
.ph-fill.ph-bug-droid:before {
  content: "\e5f8";
}
.ph-fill.ph-building:before {
  content: "\e100";
}
.ph-fill.ph-building-apartment:before {
  content: "\e0fe";
}
.ph-fill.ph-building-office:before {
  content: "\e0ff";
}
.ph-fill.ph-buildings:before {
  content: "\e102";
}
.ph-fill.ph-bulldozer:before {
  content: "\ec6c";
}
.ph-fill.ph-bus:before {
  content: "\e106";
}
.ph-fill.ph-butterfly:before {
  content: "\ea6e";
}
.ph-fill.ph-cable-car:before {
  content: "\e49c";
}
.ph-fill.ph-cactus:before {
  content: "\e918";
}
.ph-fill.ph-cake:before {
  content: "\e780";
}
.ph-fill.ph-calculator:before {
  content: "\e538";
}
.ph-fill.ph-calendar:before {
  content: "\e108";
}
.ph-fill.ph-calendar-blank:before {
  content: "\e10a";
}
.ph-fill.ph-calendar-check:before {
  content: "\e712";
}
.ph-fill.ph-calendar-dot:before {
  content: "\e7b2";
}
.ph-fill.ph-calendar-dots:before {
  content: "\e7b4";
}
.ph-fill.ph-calendar-heart:before {
  content: "\e8b0";
}
.ph-fill.ph-calendar-minus:before {
  content: "\ea14";
}
.ph-fill.ph-calendar-plus:before {
  content: "\e714";
}
.ph-fill.ph-calendar-slash:before {
  content: "\ea12";
}
.ph-fill.ph-calendar-star:before {
  content: "\e8b2";
}
.ph-fill.ph-calendar-x:before {
  content: "\e10c";
}
.ph-fill.ph-call-bell:before {
  content: "\e7de";
}
.ph-fill.ph-camera:before {
  content: "\e10e";
}
.ph-fill.ph-camera-plus:before {
  content: "\ec58";
}
.ph-fill.ph-camera-rotate:before {
  content: "\e7a4";
}
.ph-fill.ph-camera-slash:before {
  content: "\e110";
}
.ph-fill.ph-campfire:before {
  content: "\e9d8";
}
.ph-fill.ph-car:before {
  content: "\e112";
}
.ph-fill.ph-car-battery:before {
  content: "\ee30";
}
.ph-fill.ph-car-profile:before {
  content: "\e8cc";
}
.ph-fill.ph-car-simple:before {
  content: "\e114";
}
.ph-fill.ph-cardholder:before {
  content: "\e5fa";
}
.ph-fill.ph-cards:before {
  content: "\e0f8";
}
.ph-fill.ph-cards-three:before {
  content: "\ee50";
}
.ph-fill.ph-caret-circle-double-down:before {
  content: "\e116";
}
.ph-fill.ph-caret-circle-double-left:before {
  content: "\e118";
}
.ph-fill.ph-caret-circle-double-right:before {
  content: "\e11a";
}
.ph-fill.ph-caret-circle-double-up:before {
  content: "\e11c";
}
.ph-fill.ph-caret-circle-down:before {
  content: "\e11e";
}
.ph-fill.ph-caret-circle-left:before {
  content: "\e120";
}
.ph-fill.ph-caret-circle-right:before {
  content: "\e122";
}
.ph-fill.ph-caret-circle-up:before {
  content: "\e124";
}
.ph-fill.ph-caret-circle-up-down:before {
  content: "\e13e";
}
.ph-fill.ph-caret-double-down:before {
  content: "\e126";
}
.ph-fill.ph-caret-double-left:before {
  content: "\e128";
}
.ph-fill.ph-caret-double-right:before {
  content: "\e12a";
}
.ph-fill.ph-caret-double-up:before {
  content: "\e12c";
}
.ph-fill.ph-caret-down:before {
  content: "\e136";
}
.ph-fill.ph-caret-left:before {
  content: "\e138";
}
.ph-fill.ph-caret-line-down:before {
  content: "\e134";
}
.ph-fill.ph-caret-line-left:before {
  content: "\e132";
}
.ph-fill.ph-caret-line-right:before {
  content: "\e130";
}
.ph-fill.ph-caret-line-up:before {
  content: "\e12e";
}
.ph-fill.ph-caret-right:before {
  content: "\e13a";
}
.ph-fill.ph-caret-up:before {
  content: "\e13c";
}
.ph-fill.ph-caret-up-down:before {
  content: "\e140";
}
.ph-fill.ph-carrot:before {
  content: "\ed38";
}
.ph-fill.ph-cash-register:before {
  content: "\ed80";
}
.ph-fill.ph-cassette-tape:before {
  content: "\ed2e";
}
.ph-fill.ph-castle-turret:before {
  content: "\e9d0";
}
.ph-fill.ph-cat:before {
  content: "\e748";
}
.ph-fill.ph-cell-signal-full:before {
  content: "\e142";
}
.ph-fill.ph-cell-signal-high:before {
  content: "\e144";
}
.ph-fill.ph-cell-signal-low:before {
  content: "\e146";
}
.ph-fill.ph-cell-signal-medium:before {
  content: "\e148";
}
.ph-fill.ph-cell-signal-none:before {
  content: "\e14a";
}
.ph-fill.ph-cell-signal-slash:before {
  content: "\e14c";
}
.ph-fill.ph-cell-signal-x:before {
  content: "\e14e";
}
.ph-fill.ph-cell-tower:before {
  content: "\ebaa";
}
.ph-fill.ph-certificate:before {
  content: "\e766";
}
.ph-fill.ph-chair:before {
  content: "\e950";
}
.ph-fill.ph-chalkboard:before {
  content: "\e5fc";
}
.ph-fill.ph-chalkboard-simple:before {
  content: "\e5fe";
}
.ph-fill.ph-chalkboard-teacher:before {
  content: "\e600";
}
.ph-fill.ph-champagne:before {
  content: "\eaca";
}
.ph-fill.ph-charging-station:before {
  content: "\e8d0";
}
.ph-fill.ph-chart-bar:before {
  content: "\e150";
}
.ph-fill.ph-chart-bar-horizontal:before {
  content: "\e152";
}
.ph-fill.ph-chart-donut:before {
  content: "\eaa6";
}
.ph-fill.ph-chart-line:before {
  content: "\e154";
}
.ph-fill.ph-chart-line-down:before {
  content: "\e8b6";
}
.ph-fill.ph-chart-line-up:before {
  content: "\e156";
}
.ph-fill.ph-chart-pie:before {
  content: "\e158";
}
.ph-fill.ph-chart-pie-slice:before {
  content: "\e15a";
}
.ph-fill.ph-chart-polar:before {
  content: "\eaa8";
}
.ph-fill.ph-chart-scatter:before {
  content: "\eaac";
}
.ph-fill.ph-chat:before {
  content: "\e15c";
}
.ph-fill.ph-chat-centered:before {
  content: "\e160";
}
.ph-fill.ph-chat-centered-dots:before {
  content: "\e164";
}
.ph-fill.ph-chat-centered-slash:before {
  content: "\e162";
}
.ph-fill.ph-chat-centered-text:before {
  content: "\e166";
}
.ph-fill.ph-chat-circle:before {
  content: "\e168";
}
.ph-fill.ph-chat-circle-dots:before {
  content: "\e16c";
}
.ph-fill.ph-chat-circle-slash:before {
  content: "\e16a";
}
.ph-fill.ph-chat-circle-text:before {
  content: "\e16e";
}
.ph-fill.ph-chat-dots:before {
  content: "\e170";
}
.ph-fill.ph-chat-slash:before {
  content: "\e15e";
}
.ph-fill.ph-chat-teardrop:before {
  content: "\e172";
}
.ph-fill.ph-chat-teardrop-dots:before {
  content: "\e176";
}
.ph-fill.ph-chat-teardrop-slash:before {
  content: "\e174";
}
.ph-fill.ph-chat-teardrop-text:before {
  content: "\e178";
}
.ph-fill.ph-chat-text:before {
  content: "\e17a";
}
.ph-fill.ph-chats:before {
  content: "\e17c";
}
.ph-fill.ph-chats-circle:before {
  content: "\e17e";
}
.ph-fill.ph-chats-teardrop:before {
  content: "\e180";
}
.ph-fill.ph-check:before {
  content: "\e182";
}
.ph-fill.ph-check-circle:before {
  content: "\e184";
}
.ph-fill.ph-check-fat:before {
  content: "\eba6";
}
.ph-fill.ph-check-square:before {
  content: "\e186";
}
.ph-fill.ph-check-square-offset:before {
  content: "\e188";
}
.ph-fill.ph-checkerboard:before {
  content: "\e8c4";
}
.ph-fill.ph-checks:before {
  content: "\e53a";
}
.ph-fill.ph-cheers:before {
  content: "\ea4a";
}
.ph-fill.ph-cheese:before {
  content: "\e9fe";
}
.ph-fill.ph-chef-hat:before {
  content: "\ed8e";
}
.ph-fill.ph-cherries:before {
  content: "\e830";
}
.ph-fill.ph-church:before {
  content: "\ecea";
}
.ph-fill.ph-cigarette:before {
  content: "\ed90";
}
.ph-fill.ph-cigarette-slash:before {
  content: "\ed92";
}
.ph-fill.ph-circle:before {
  content: "\e18a";
}
.ph-fill.ph-circle-dashed:before {
  content: "\e602";
}
.ph-fill.ph-circle-half:before {
  content: "\e18c";
}
.ph-fill.ph-circle-half-tilt:before {
  content: "\e18e";
}
.ph-fill.ph-circle-notch:before {
  content: "\eb44";
}
.ph-fill.ph-circles-four:before {
  content: "\e190";
}
.ph-fill.ph-circles-three:before {
  content: "\e192";
}
.ph-fill.ph-circles-three-plus:before {
  content: "\e194";
}
.ph-fill.ph-circuitry:before {
  content: "\e9c2";
}
.ph-fill.ph-city:before {
  content: "\ea6a";
}
.ph-fill.ph-clipboard:before {
  content: "\e196";
}
.ph-fill.ph-clipboard-text:before {
  content: "\e198";
}
.ph-fill.ph-clock:before {
  content: "\e19a";
}
.ph-fill.ph-clock-afternoon:before {
  content: "\e19c";
}
.ph-fill.ph-clock-clockwise:before {
  content: "\e19e";
}
.ph-fill.ph-clock-countdown:before {
  content: "\ed2c";
}
.ph-fill.ph-clock-counter-clockwise:before {
  content: "\e1a0";
}
.ph-fill.ph-clock-user:before {
  content: "\edec";
}
.ph-fill.ph-closed-captioning:before {
  content: "\e1a4";
}
.ph-fill.ph-cloud:before {
  content: "\e1aa";
}
.ph-fill.ph-cloud-arrow-down:before {
  content: "\e1ac";
}
.ph-fill.ph-cloud-arrow-up:before {
  content: "\e1ae";
}
.ph-fill.ph-cloud-check:before {
  content: "\e1b0";
}
.ph-fill.ph-cloud-fog:before {
  content: "\e53c";
}
.ph-fill.ph-cloud-lightning:before {
  content: "\e1b2";
}
.ph-fill.ph-cloud-moon:before {
  content: "\e53e";
}
.ph-fill.ph-cloud-rain:before {
  content: "\e1b4";
}
.ph-fill.ph-cloud-slash:before {
  content: "\e1b6";
}
.ph-fill.ph-cloud-snow:before {
  content: "\e1b8";
}
.ph-fill.ph-cloud-sun:before {
  content: "\e540";
}
.ph-fill.ph-cloud-warning:before {
  content: "\ea98";
}
.ph-fill.ph-cloud-x:before {
  content: "\ea96";
}
.ph-fill.ph-clover:before {
  content: "\edc8";
}
.ph-fill.ph-club:before {
  content: "\e1ba";
}
.ph-fill.ph-coat-hanger:before {
  content: "\e7fe";
}
.ph-fill.ph-coda-logo:before {
  content: "\e7ce";
}
.ph-fill.ph-code:before {
  content: "\e1bc";
}
.ph-fill.ph-code-block:before {
  content: "\eafe";
}
.ph-fill.ph-code-simple:before {
  content: "\e1be";
}
.ph-fill.ph-codepen-logo:before {
  content: "\e978";
}
.ph-fill.ph-codesandbox-logo:before {
  content: "\ea06";
}
.ph-fill.ph-coffee:before {
  content: "\e1c2";
}
.ph-fill.ph-coffee-bean:before {
  content: "\e1c0";
}
.ph-fill.ph-coin:before {
  content: "\e60e";
}
.ph-fill.ph-coin-vertical:before {
  content: "\eb48";
}
.ph-fill.ph-coins:before {
  content: "\e78e";
}
.ph-fill.ph-columns:before {
  content: "\e546";
}
.ph-fill.ph-columns-plus-left:before {
  content: "\e544";
}
.ph-fill.ph-columns-plus-right:before {
  content: "\e542";
}
.ph-fill.ph-command:before {
  content: "\e1c4";
}
.ph-fill.ph-compass:before {
  content: "\e1c8";
}
.ph-fill.ph-compass-rose:before {
  content: "\e1c6";
}
.ph-fill.ph-compass-tool:before {
  content: "\ea0e";
}
.ph-fill.ph-computer-tower:before {
  content: "\e548";
}
.ph-fill.ph-confetti:before {
  content: "\e81a";
}
.ph-fill.ph-contactless-payment:before {
  content: "\ed42";
}
.ph-fill.ph-control:before {
  content: "\eca6";
}
.ph-fill.ph-cookie:before {
  content: "\e6ca";
}
.ph-fill.ph-cooking-pot:before {
  content: "\e764";
}
.ph-fill.ph-copy:before {
  content: "\e1ca";
}
.ph-fill.ph-copy-simple:before {
  content: "\e1cc";
}
.ph-fill.ph-copyleft:before {
  content: "\e86a";
}
.ph-fill.ph-copyright:before {
  content: "\e54a";
}
.ph-fill.ph-corners-in:before {
  content: "\e1ce";
}
.ph-fill.ph-corners-out:before {
  content: "\e1d0";
}
.ph-fill.ph-couch:before {
  content: "\e7f6";
}
.ph-fill.ph-court-basketball:before {
  content: "\ee36";
}
.ph-fill.ph-cow:before {
  content: "\eabe";
}
.ph-fill.ph-cowboy-hat:before {
  content: "\ed12";
}
.ph-fill.ph-cpu:before {
  content: "\e610";
}
.ph-fill.ph-crane:before {
  content: "\ed48";
}
.ph-fill.ph-crane-tower:before {
  content: "\ed49";
}
.ph-fill.ph-credit-card:before {
  content: "\e1d2";
}
.ph-fill.ph-cricket:before {
  content: "\ee12";
}
.ph-fill.ph-crop:before {
  content: "\e1d4";
}
.ph-fill.ph-cross:before {
  content: "\e8a0";
}
.ph-fill.ph-crosshair:before {
  content: "\e1d6";
}
.ph-fill.ph-crosshair-simple:before {
  content: "\e1d8";
}
.ph-fill.ph-crown:before {
  content: "\e614";
}
.ph-fill.ph-crown-cross:before {
  content: "\ee5e";
}
.ph-fill.ph-crown-simple:before {
  content: "\e616";
}
.ph-fill.ph-cube:before {
  content: "\e1da";
}
.ph-fill.ph-cube-focus:before {
  content: "\ed0a";
}
.ph-fill.ph-cube-transparent:before {
  content: "\ec7c";
}
.ph-fill.ph-currency-btc:before {
  content: "\e618";
}
.ph-fill.ph-currency-circle-dollar:before {
  content: "\e54c";
}
.ph-fill.ph-currency-cny:before {
  content: "\e54e";
}
.ph-fill.ph-currency-dollar:before {
  content: "\e550";
}
.ph-fill.ph-currency-dollar-simple:before {
  content: "\e552";
}
.ph-fill.ph-currency-eth:before {
  content: "\eada";
}
.ph-fill.ph-currency-eur:before {
  content: "\e554";
}
.ph-fill.ph-currency-gbp:before {
  content: "\e556";
}
.ph-fill.ph-currency-inr:before {
  content: "\e558";
}
.ph-fill.ph-currency-jpy:before {
  content: "\e55a";
}
.ph-fill.ph-currency-krw:before {
  content: "\e55c";
}
.ph-fill.ph-currency-kzt:before {
  content: "\ec4c";
}
.ph-fill.ph-currency-ngn:before {
  content: "\eb52";
}
.ph-fill.ph-currency-rub:before {
  content: "\e55e";
}
.ph-fill.ph-cursor:before {
  content: "\e1dc";
}
.ph-fill.ph-cursor-click:before {
  content: "\e7c8";
}
.ph-fill.ph-cursor-text:before {
  content: "\e7d8";
}
.ph-fill.ph-cylinder:before {
  content: "\e8fc";
}
.ph-fill.ph-database:before {
  content: "\e1de";
}
.ph-fill.ph-desk:before {
  content: "\ed16";
}
.ph-fill.ph-desktop:before {
  content: "\e560";
}
.ph-fill.ph-desktop-tower:before {
  content: "\e562";
}
.ph-fill.ph-detective:before {
  content: "\e83e";
}
.ph-fill.ph-dev-to-logo:before {
  content: "\ed0e";
}
.ph-fill.ph-device-mobile:before {
  content: "\e1e0";
}
.ph-fill.ph-device-mobile-camera:before {
  content: "\e1e2";
}
.ph-fill.ph-device-mobile-slash:before {
  content: "\ee46";
}
.ph-fill.ph-device-mobile-speaker:before {
  content: "\e1e4";
}
.ph-fill.ph-device-rotate:before {
  content: "\edf2";
}
.ph-fill.ph-device-tablet:before {
  content: "\e1e6";
}
.ph-fill.ph-device-tablet-camera:before {
  content: "\e1e8";
}
.ph-fill.ph-device-tablet-speaker:before {
  content: "\e1ea";
}
.ph-fill.ph-devices:before {
  content: "\eba4";
}
.ph-fill.ph-diamond:before {
  content: "\e1ec";
}
.ph-fill.ph-diamonds-four:before {
  content: "\e8f4";
}
.ph-fill.ph-dice-five:before {
  content: "\e1ee";
}
.ph-fill.ph-dice-four:before {
  content: "\e1f0";
}
.ph-fill.ph-dice-one:before {
  content: "\e1f2";
}
.ph-fill.ph-dice-six:before {
  content: "\e1f4";
}
.ph-fill.ph-dice-three:before {
  content: "\e1f6";
}
.ph-fill.ph-dice-two:before {
  content: "\e1f8";
}
.ph-fill.ph-disc:before {
  content: "\e564";
}
.ph-fill.ph-disco-ball:before {
  content: "\ed98";
}
.ph-fill.ph-discord-logo:before {
  content: "\e61a";
}
.ph-fill.ph-divide:before {
  content: "\e1fa";
}
.ph-fill.ph-dna:before {
  content: "\e924";
}
.ph-fill.ph-dog:before {
  content: "\e74a";
}
.ph-fill.ph-door:before {
  content: "\e61c";
}
.ph-fill.ph-door-open:before {
  content: "\e7e6";
}
.ph-fill.ph-dot:before {
  content: "\ecde";
}
.ph-fill.ph-dot-outline:before {
  content: "\ece0";
}
.ph-fill.ph-dots-nine:before {
  content: "\e1fc";
}
.ph-fill.ph-dots-six:before {
  content: "\e794";
}
.ph-fill.ph-dots-six-vertical:before {
  content: "\eae2";
}
.ph-fill.ph-dots-three:before {
  content: "\e1fe";
}
.ph-fill.ph-dots-three-circle:before {
  content: "\e200";
}
.ph-fill.ph-dots-three-circle-vertical:before {
  content: "\e202";
}
.ph-fill.ph-dots-three-outline:before {
  content: "\e204";
}
.ph-fill.ph-dots-three-outline-vertical:before {
  content: "\e206";
}
.ph-fill.ph-dots-three-vertical:before {
  content: "\e208";
}
.ph-fill.ph-download:before {
  content: "\e20a";
}
.ph-fill.ph-download-simple:before {
  content: "\e20c";
}
.ph-fill.ph-dress:before {
  content: "\ea7e";
}
.ph-fill.ph-dresser:before {
  content: "\e94e";
}
.ph-fill.ph-dribbble-logo:before {
  content: "\e20e";
}
.ph-fill.ph-drone:before {
  content: "\ed74";
}
.ph-fill.ph-drop:before {
  content: "\e210";
}
.ph-fill.ph-drop-half:before {
  content: "\e566";
}
.ph-fill.ph-drop-half-bottom:before {
  content: "\eb40";
}
.ph-fill.ph-drop-simple:before {
  content: "\ee32";
}
.ph-fill.ph-drop-slash:before {
  content: "\e954";
}
.ph-fill.ph-dropbox-logo:before {
  content: "\e7d0";
}
.ph-fill.ph-ear:before {
  content: "\e70c";
}
.ph-fill.ph-ear-slash:before {
  content: "\e70e";
}
.ph-fill.ph-egg:before {
  content: "\e812";
}
.ph-fill.ph-egg-crack:before {
  content: "\eb64";
}
.ph-fill.ph-eject:before {
  content: "\e212";
}
.ph-fill.ph-eject-simple:before {
  content: "\e6ae";
}
.ph-fill.ph-elevator:before {
  content: "\ecc0";
}
.ph-fill.ph-empty:before {
  content: "\edbc";
}
.ph-fill.ph-engine:before {
  content: "\ea80";
}
.ph-fill.ph-envelope:before {
  content: "\e214";
}
.ph-fill.ph-envelope-open:before {
  content: "\e216";
}
.ph-fill.ph-envelope-simple:before {
  content: "\e218";
}
.ph-fill.ph-envelope-simple-open:before {
  content: "\e21a";
}
.ph-fill.ph-equalizer:before {
  content: "\ebbc";
}
.ph-fill.ph-equals:before {
  content: "\e21c";
}
.ph-fill.ph-eraser:before {
  content: "\e21e";
}
.ph-fill.ph-escalator-down:before {
  content: "\ecba";
}
.ph-fill.ph-escalator-up:before {
  content: "\ecbc";
}
.ph-fill.ph-exam:before {
  content: "\e742";
}
.ph-fill.ph-exclamation-mark:before {
  content: "\ee44";
}
.ph-fill.ph-exclude:before {
  content: "\e882";
}
.ph-fill.ph-exclude-square:before {
  content: "\e880";
}
.ph-fill.ph-export:before {
  content: "\eaf0";
}
.ph-fill.ph-eye:before {
  content: "\e220";
}
.ph-fill.ph-eye-closed:before {
  content: "\e222";
}
.ph-fill.ph-eye-slash:before {
  content: "\e224";
}
.ph-fill.ph-eyedropper:before {
  content: "\e568";
}
.ph-fill.ph-eyedropper-sample:before {
  content: "\eac4";
}
.ph-fill.ph-eyeglasses:before {
  content: "\e7ba";
}
.ph-fill.ph-eyes:before {
  content: "\ee5c";
}
.ph-fill.ph-face-mask:before {
  content: "\e56a";
}
.ph-fill.ph-facebook-logo:before {
  content: "\e226";
}
.ph-fill.ph-factory:before {
  content: "\e760";
}
.ph-fill.ph-faders:before {
  content: "\e228";
}
.ph-fill.ph-faders-horizontal:before {
  content: "\e22a";
}
.ph-fill.ph-fallout-shelter:before {
  content: "\e9de";
}
.ph-fill.ph-fan:before {
  content: "\e9f2";
}
.ph-fill.ph-farm:before {
  content: "\ec70";
}
.ph-fill.ph-fast-forward:before {
  content: "\e6a6";
}
.ph-fill.ph-fast-forward-circle:before {
  content: "\e22c";
}
.ph-fill.ph-feather:before {
  content: "\e9c0";
}
.ph-fill.ph-fediverse-logo:before {
  content: "\ed66";
}
.ph-fill.ph-figma-logo:before {
  content: "\e22e";
}
.ph-fill.ph-file:before {
  content: "\e230";
}
.ph-fill.ph-file-archive:before {
  content: "\eb2a";
}
.ph-fill.ph-file-arrow-down:before {
  content: "\e232";
}
.ph-fill.ph-file-arrow-up:before {
  content: "\e61e";
}
.ph-fill.ph-file-audio:before {
  content: "\ea20";
}
.ph-fill.ph-file-c:before {
  content: "\eb32";
}
.ph-fill.ph-file-c-sharp:before {
  content: "\eb30";
}
.ph-fill.ph-file-cloud:before {
  content: "\e95e";
}
.ph-fill.ph-file-code:before {
  content: "\e914";
}
.ph-fill.ph-file-cpp:before {
  content: "\eb2e";
}
.ph-fill.ph-file-css:before {
  content: "\eb34";
}
.ph-fill.ph-file-csv:before {
  content: "\eb1c";
}
.ph-fill.ph-file-dashed:before {
  content: "\e704";
}
.ph-fill.ph-file-dotted:before {
  content: "\e704";
}
.ph-fill.ph-file-doc:before {
  content: "\eb1e";
}
.ph-fill.ph-file-html:before {
  content: "\eb38";
}
.ph-fill.ph-file-image:before {
  content: "\ea24";
}
.ph-fill.ph-file-ini:before {
  content: "\eb33";
}
.ph-fill.ph-file-jpg:before {
  content: "\eb1a";
}
.ph-fill.ph-file-js:before {
  content: "\eb24";
}
.ph-fill.ph-file-jsx:before {
  content: "\eb3a";
}
.ph-fill.ph-file-lock:before {
  content: "\e95c";
}
.ph-fill.ph-file-magnifying-glass:before {
  content: "\e238";
}
.ph-fill.ph-file-search:before {
  content: "\e238";
}
.ph-fill.ph-file-md:before {
  content: "\ed50";
}
.ph-fill.ph-file-minus:before {
  content: "\e234";
}
.ph-fill.ph-file-pdf:before {
  content: "\e702";
}
.ph-fill.ph-file-plus:before {
  content: "\e236";
}
.ph-fill.ph-file-png:before {
  content: "\eb18";
}
.ph-fill.ph-file-ppt:before {
  content: "\eb20";
}
.ph-fill.ph-file-py:before {
  content: "\eb2c";
}
.ph-fill.ph-file-rs:before {
  content: "\eb28";
}
.ph-fill.ph-file-sql:before {
  content: "\ed4e";
}
.ph-fill.ph-file-svg:before {
  content: "\ed08";
}
.ph-fill.ph-file-text:before {
  content: "\e23a";
}
.ph-fill.ph-file-ts:before {
  content: "\eb26";
}
.ph-fill.ph-file-tsx:before {
  content: "\eb3c";
}
.ph-fill.ph-file-txt:before {
  content: "\eb35";
}
.ph-fill.ph-file-video:before {
  content: "\ea22";
}
.ph-fill.ph-file-vue:before {
  content: "\eb3e";
}
.ph-fill.ph-file-x:before {
  content: "\e23c";
}
.ph-fill.ph-file-xls:before {
  content: "\eb22";
}
.ph-fill.ph-file-zip:before {
  content: "\e958";
}
.ph-fill.ph-files:before {
  content: "\e710";
}
.ph-fill.ph-film-reel:before {
  content: "\e8c0";
}
.ph-fill.ph-film-script:before {
  content: "\eb50";
}
.ph-fill.ph-film-slate:before {
  content: "\e8c2";
}
.ph-fill.ph-film-strip:before {
  content: "\e792";
}
.ph-fill.ph-fingerprint:before {
  content: "\e23e";
}
.ph-fill.ph-fingerprint-simple:before {
  content: "\e240";
}
.ph-fill.ph-finn-the-human:before {
  content: "\e56c";
}
.ph-fill.ph-fire:before {
  content: "\e242";
}
.ph-fill.ph-fire-extinguisher:before {
  content: "\e9e8";
}
.ph-fill.ph-fire-simple:before {
  content: "\e620";
}
.ph-fill.ph-fire-truck:before {
  content: "\e574";
}
.ph-fill.ph-first-aid:before {
  content: "\e56e";
}
.ph-fill.ph-first-aid-kit:before {
  content: "\e570";
}
.ph-fill.ph-fish:before {
  content: "\e728";
}
.ph-fill.ph-fish-simple:before {
  content: "\e72a";
}
.ph-fill.ph-flag:before {
  content: "\e244";
}
.ph-fill.ph-flag-banner:before {
  content: "\e622";
}
.ph-fill.ph-flag-banner-fold:before {
  content: "\ecf2";
}
.ph-fill.ph-flag-checkered:before {
  content: "\ea38";
}
.ph-fill.ph-flag-pennant:before {
  content: "\ecf0";
}
.ph-fill.ph-flame:before {
  content: "\e624";
}
.ph-fill.ph-flashlight:before {
  content: "\e246";
}
.ph-fill.ph-flask:before {
  content: "\e79e";
}
.ph-fill.ph-flip-horizontal:before {
  content: "\ed6a";
}
.ph-fill.ph-flip-vertical:before {
  content: "\ed6c";
}
.ph-fill.ph-floppy-disk:before {
  content: "\e248";
}
.ph-fill.ph-floppy-disk-back:before {
  content: "\eaf4";
}
.ph-fill.ph-flow-arrow:before {
  content: "\e6ec";
}
.ph-fill.ph-flower:before {
  content: "\e75e";
}
.ph-fill.ph-flower-lotus:before {
  content: "\e6cc";
}
.ph-fill.ph-flower-tulip:before {
  content: "\eacc";
}
.ph-fill.ph-flying-saucer:before {
  content: "\eb4a";
}
.ph-fill.ph-folder:before {
  content: "\e24a";
}
.ph-fill.ph-folder-notch:before {
  content: "\e24a";
}
.ph-fill.ph-folder-dashed:before {
  content: "\e8f8";
}
.ph-fill.ph-folder-dotted:before {
  content: "\e8f8";
}
.ph-fill.ph-folder-lock:before {
  content: "\ea3c";
}
.ph-fill.ph-folder-minus:before {
  content: "\e254";
}
.ph-fill.ph-folder-notch-minus:before {
  content: "\e254";
}
.ph-fill.ph-folder-open:before {
  content: "\e256";
}
.ph-fill.ph-folder-notch-open:before {
  content: "\e256";
}
.ph-fill.ph-folder-plus:before {
  content: "\e258";
}
.ph-fill.ph-folder-notch-plus:before {
  content: "\e258";
}
.ph-fill.ph-folder-simple:before {
  content: "\e25a";
}
.ph-fill.ph-folder-simple-dashed:before {
  content: "\ec2a";
}
.ph-fill.ph-folder-simple-dotted:before {
  content: "\ec2a";
}
.ph-fill.ph-folder-simple-lock:before {
  content: "\eb5e";
}
.ph-fill.ph-folder-simple-minus:before {
  content: "\e25c";
}
.ph-fill.ph-folder-simple-plus:before {
  content: "\e25e";
}
.ph-fill.ph-folder-simple-star:before {
  content: "\ec2e";
}
.ph-fill.ph-folder-simple-user:before {
  content: "\eb60";
}
.ph-fill.ph-folder-star:before {
  content: "\ea86";
}
.ph-fill.ph-folder-user:before {
  content: "\eb46";
}
.ph-fill.ph-folders:before {
  content: "\e260";
}
.ph-fill.ph-football:before {
  content: "\e718";
}
.ph-fill.ph-football-helmet:before {
  content: "\ee4c";
}
.ph-fill.ph-footprints:before {
  content: "\ea88";
}
.ph-fill.ph-fork-knife:before {
  content: "\e262";
}
.ph-fill.ph-four-k:before {
  content: "\ea5c";
}
.ph-fill.ph-frame-corners:before {
  content: "\e626";
}
.ph-fill.ph-framer-logo:before {
  content: "\e264";
}
.ph-fill.ph-function:before {
  content: "\ebe4";
}
.ph-fill.ph-funnel:before {
  content: "\e266";
}
.ph-fill.ph-funnel-simple:before {
  content: "\e268";
}
.ph-fill.ph-funnel-simple-x:before {
  content: "\e26a";
}
.ph-fill.ph-funnel-x:before {
  content: "\e26c";
}
.ph-fill.ph-game-controller:before {
  content: "\e26e";
}
.ph-fill.ph-garage:before {
  content: "\ecd6";
}
.ph-fill.ph-gas-can:before {
  content: "\e8ce";
}
.ph-fill.ph-gas-pump:before {
  content: "\e768";
}
.ph-fill.ph-gauge:before {
  content: "\e628";
}
.ph-fill.ph-gavel:before {
  content: "\ea32";
}
.ph-fill.ph-gear:before {
  content: "\e270";
}
.ph-fill.ph-gear-fine:before {
  content: "\e87c";
}
.ph-fill.ph-gear-six:before {
  content: "\e272";
}
.ph-fill.ph-gender-female:before {
  content: "\e6e0";
}
.ph-fill.ph-gender-intersex:before {
  content: "\e6e6";
}
.ph-fill.ph-gender-male:before {
  content: "\e6e2";
}
.ph-fill.ph-gender-neuter:before {
  content: "\e6ea";
}
.ph-fill.ph-gender-nonbinary:before {
  content: "\e6e4";
}
.ph-fill.ph-gender-transgender:before {
  content: "\e6e8";
}
.ph-fill.ph-ghost:before {
  content: "\e62a";
}
.ph-fill.ph-gif:before {
  content: "\e274";
}
.ph-fill.ph-gift:before {
  content: "\e276";
}
.ph-fill.ph-git-branch:before {
  content: "\e278";
}
.ph-fill.ph-git-commit:before {
  content: "\e27a";
}
.ph-fill.ph-git-diff:before {
  content: "\e27c";
}
.ph-fill.ph-git-fork:before {
  content: "\e27e";
}
.ph-fill.ph-git-merge:before {
  content: "\e280";
}
.ph-fill.ph-git-pull-request:before {
  content: "\e282";
}
.ph-fill.ph-github-logo:before {
  content: "\e576";
}
.ph-fill.ph-gitlab-logo:before {
  content: "\e694";
}
.ph-fill.ph-gitlab-logo-simple:before {
  content: "\e696";
}
.ph-fill.ph-globe:before {
  content: "\e288";
}
.ph-fill.ph-globe-hemisphere-east:before {
  content: "\e28a";
}
.ph-fill.ph-globe-hemisphere-west:before {
  content: "\e28c";
}
.ph-fill.ph-globe-simple:before {
  content: "\e28e";
}
.ph-fill.ph-globe-simple-x:before {
  content: "\e284";
}
.ph-fill.ph-globe-stand:before {
  content: "\e290";
}
.ph-fill.ph-globe-x:before {
  content: "\e286";
}
.ph-fill.ph-goggles:before {
  content: "\ecb4";
}
.ph-fill.ph-golf:before {
  content: "\ea3e";
}
.ph-fill.ph-goodreads-logo:before {
  content: "\ed10";
}
.ph-fill.ph-google-cardboard-logo:before {
  content: "\e7b6";
}
.ph-fill.ph-google-chrome-logo:before {
  content: "\e976";
}
.ph-fill.ph-google-drive-logo:before {
  content: "\e8f6";
}
.ph-fill.ph-google-logo:before {
  content: "\e292";
}
.ph-fill.ph-google-photos-logo:before {
  content: "\eb92";
}
.ph-fill.ph-google-play-logo:before {
  content: "\e294";
}
.ph-fill.ph-google-podcasts-logo:before {
  content: "\eb94";
}
.ph-fill.ph-gps:before {
  content: "\edd8";
}
.ph-fill.ph-gps-fix:before {
  content: "\edd6";
}
.ph-fill.ph-gps-slash:before {
  content: "\edd4";
}
.ph-fill.ph-gradient:before {
  content: "\eb42";
}
.ph-fill.ph-graduation-cap:before {
  content: "\e62c";
}
.ph-fill.ph-grains:before {
  content: "\ec68";
}
.ph-fill.ph-grains-slash:before {
  content: "\ec6a";
}
.ph-fill.ph-graph:before {
  content: "\eb58";
}
.ph-fill.ph-graphics-card:before {
  content: "\e612";
}
.ph-fill.ph-greater-than:before {
  content: "\edc4";
}
.ph-fill.ph-greater-than-or-equal:before {
  content: "\eda2";
}
.ph-fill.ph-grid-four:before {
  content: "\e296";
}
.ph-fill.ph-grid-nine:before {
  content: "\ec8c";
}
.ph-fill.ph-guitar:before {
  content: "\ea8a";
}
.ph-fill.ph-hair-dryer:before {
  content: "\ea66";
}
.ph-fill.ph-hamburger:before {
  content: "\e790";
}
.ph-fill.ph-hammer:before {
  content: "\e80e";
}
.ph-fill.ph-hand:before {
  content: "\e298";
}
.ph-fill.ph-hand-arrow-down:before {
  content: "\ea4e";
}
.ph-fill.ph-hand-arrow-up:before {
  content: "\ee5a";
}
.ph-fill.ph-hand-coins:before {
  content: "\ea8c";
}
.ph-fill.ph-hand-deposit:before {
  content: "\ee82";
}
.ph-fill.ph-hand-eye:before {
  content: "\ea4c";
}
.ph-fill.ph-hand-fist:before {
  content: "\e57a";
}
.ph-fill.ph-hand-grabbing:before {
  content: "\e57c";
}
.ph-fill.ph-hand-heart:before {
  content: "\e810";
}
.ph-fill.ph-hand-palm:before {
  content: "\e57e";
}
.ph-fill.ph-hand-peace:before {
  content: "\e7cc";
}
.ph-fill.ph-hand-pointing:before {
  content: "\e29a";
}
.ph-fill.ph-hand-soap:before {
  content: "\e630";
}
.ph-fill.ph-hand-swipe-left:before {
  content: "\ec94";
}
.ph-fill.ph-hand-swipe-right:before {
  content: "\ec92";
}
.ph-fill.ph-hand-tap:before {
  content: "\ec90";
}
.ph-fill.ph-hand-waving:before {
  content: "\e580";
}
.ph-fill.ph-hand-withdraw:before {
  content: "\ee80";
}
.ph-fill.ph-handbag:before {
  content: "\e29c";
}
.ph-fill.ph-handbag-simple:before {
  content: "\e62e";
}
.ph-fill.ph-hands-clapping:before {
  content: "\e6a0";
}
.ph-fill.ph-hands-praying:before {
  content: "\ecc8";
}
.ph-fill.ph-handshake:before {
  content: "\e582";
}
.ph-fill.ph-hard-drive:before {
  content: "\e29e";
}
.ph-fill.ph-hard-drives:before {
  content: "\e2a0";
}
.ph-fill.ph-hard-hat:before {
  content: "\ed46";
}
.ph-fill.ph-hash:before {
  content: "\e2a2";
}
.ph-fill.ph-hash-straight:before {
  content: "\e2a4";
}
.ph-fill.ph-head-circuit:before {
  content: "\e7d4";
}
.ph-fill.ph-headlights:before {
  content: "\e6fe";
}
.ph-fill.ph-headphones:before {
  content: "\e2a6";
}
.ph-fill.ph-headset:before {
  content: "\e584";
}
.ph-fill.ph-heart:before {
  content: "\e2a8";
}
.ph-fill.ph-heart-break:before {
  content: "\ebe8";
}
.ph-fill.ph-heart-half:before {
  content: "\ec48";
}
.ph-fill.ph-heart-straight:before {
  content: "\e2aa";
}
.ph-fill.ph-heart-straight-break:before {
  content: "\eb98";
}
.ph-fill.ph-heartbeat:before {
  content: "\e2ac";
}
.ph-fill.ph-hexagon:before {
  content: "\e2ae";
}
.ph-fill.ph-high-definition:before {
  content: "\ea8e";
}
.ph-fill.ph-high-heel:before {
  content: "\e8e8";
}
.ph-fill.ph-highlighter:before {
  content: "\ec76";
}
.ph-fill.ph-highlighter-circle:before {
  content: "\e632";
}
.ph-fill.ph-hockey:before {
  content: "\ec86";
}
.ph-fill.ph-hoodie:before {
  content: "\ecd0";
}
.ph-fill.ph-horse:before {
  content: "\e2b0";
}
.ph-fill.ph-hospital:before {
  content: "\e844";
}
.ph-fill.ph-hourglass:before {
  content: "\e2b2";
}
.ph-fill.ph-hourglass-high:before {
  content: "\e2b4";
}
.ph-fill.ph-hourglass-low:before {
  content: "\e2b6";
}
.ph-fill.ph-hourglass-medium:before {
  content: "\e2b8";
}
.ph-fill.ph-hourglass-simple:before {
  content: "\e2ba";
}
.ph-fill.ph-hourglass-simple-high:before {
  content: "\e2bc";
}
.ph-fill.ph-hourglass-simple-low:before {
  content: "\e2be";
}
.ph-fill.ph-hourglass-simple-medium:before {
  content: "\e2c0";
}
.ph-fill.ph-house:before {
  content: "\e2c2";
}
.ph-fill.ph-house-line:before {
  content: "\e2c4";
}
.ph-fill.ph-house-simple:before {
  content: "\e2c6";
}
.ph-fill.ph-hurricane:before {
  content: "\e88e";
}
.ph-fill.ph-ice-cream:before {
  content: "\e804";
}
.ph-fill.ph-identification-badge:before {
  content: "\e6f6";
}
.ph-fill.ph-identification-card:before {
  content: "\e2c8";
}
.ph-fill.ph-image:before {
  content: "\e2ca";
}
.ph-fill.ph-image-broken:before {
  content: "\e7a8";
}
.ph-fill.ph-image-square:before {
  content: "\e2cc";
}
.ph-fill.ph-images:before {
  content: "\e836";
}
.ph-fill.ph-images-square:before {
  content: "\e834";
}
.ph-fill.ph-infinity:before {
  content: "\e634";
}
.ph-fill.ph-lemniscate:before {
  content: "\e634";
}
.ph-fill.ph-info:before {
  content: "\e2ce";
}
.ph-fill.ph-instagram-logo:before {
  content: "\e2d0";
}
.ph-fill.ph-intersect:before {
  content: "\e2d2";
}
.ph-fill.ph-intersect-square:before {
  content: "\e87a";
}
.ph-fill.ph-intersect-three:before {
  content: "\ecc4";
}
.ph-fill.ph-intersection:before {
  content: "\edba";
}
.ph-fill.ph-invoice:before {
  content: "\ee42";
}
.ph-fill.ph-island:before {
  content: "\ee06";
}
.ph-fill.ph-jar:before {
  content: "\e7e0";
}
.ph-fill.ph-jar-label:before {
  content: "\e7e1";
}
.ph-fill.ph-jeep:before {
  content: "\e2d4";
}
.ph-fill.ph-joystick:before {
  content: "\ea5e";
}
.ph-fill.ph-kanban:before {
  content: "\eb54";
}
.ph-fill.ph-key:before {
  content: "\e2d6";
}
.ph-fill.ph-key-return:before {
  content: "\e782";
}
.ph-fill.ph-keyboard:before {
  content: "\e2d8";
}
.ph-fill.ph-keyhole:before {
  content: "\ea78";
}
.ph-fill.ph-knife:before {
  content: "\e636";
}
.ph-fill.ph-ladder:before {
  content: "\e9e4";
}
.ph-fill.ph-ladder-simple:before {
  content: "\ec26";
}
.ph-fill.ph-lamp:before {
  content: "\e638";
}
.ph-fill.ph-lamp-pendant:before {
  content: "\ee2e";
}
.ph-fill.ph-laptop:before {
  content: "\e586";
}
.ph-fill.ph-lasso:before {
  content: "\edc6";
}
.ph-fill.ph-lastfm-logo:before {
  content: "\e842";
}
.ph-fill.ph-layout:before {
  content: "\e6d6";
}
.ph-fill.ph-leaf:before {
  content: "\e2da";
}
.ph-fill.ph-lectern:before {
  content: "\e95a";
}
.ph-fill.ph-lego:before {
  content: "\e8c6";
}
.ph-fill.ph-lego-smiley:before {
  content: "\e8c7";
}
.ph-fill.ph-less-than:before {
  content: "\edac";
}
.ph-fill.ph-less-than-or-equal:before {
  content: "\eda4";
}
.ph-fill.ph-letter-circle-h:before {
  content: "\ebf8";
}
.ph-fill.ph-letter-circle-p:before {
  content: "\ec08";
}
.ph-fill.ph-letter-circle-v:before {
  content: "\ec14";
}
.ph-fill.ph-lifebuoy:before {
  content: "\e63a";
}
.ph-fill.ph-lightbulb:before {
  content: "\e2dc";
}
.ph-fill.ph-lightbulb-filament:before {
  content: "\e63c";
}
.ph-fill.ph-lighthouse:before {
  content: "\e9f6";
}
.ph-fill.ph-lightning:before {
  content: "\e2de";
}
.ph-fill.ph-lightning-a:before {
  content: "\ea84";
}
.ph-fill.ph-lightning-slash:before {
  content: "\e2e0";
}
.ph-fill.ph-line-segment:before {
  content: "\e6d2";
}
.ph-fill.ph-line-segments:before {
  content: "\e6d4";
}
.ph-fill.ph-line-vertical:before {
  content: "\ed70";
}
.ph-fill.ph-link:before {
  content: "\e2e2";
}
.ph-fill.ph-link-break:before {
  content: "\e2e4";
}
.ph-fill.ph-link-simple:before {
  content: "\e2e6";
}
.ph-fill.ph-link-simple-break:before {
  content: "\e2e8";
}
.ph-fill.ph-link-simple-horizontal:before {
  content: "\e2ea";
}
.ph-fill.ph-link-simple-horizontal-break:before {
  content: "\e2ec";
}
.ph-fill.ph-linkedin-logo:before {
  content: "\e2ee";
}
.ph-fill.ph-linktree-logo:before {
  content: "\edee";
}
.ph-fill.ph-linux-logo:before {
  content: "\eb02";
}
.ph-fill.ph-list:before {
  content: "\e2f0";
}
.ph-fill.ph-list-bullets:before {
  content: "\e2f2";
}
.ph-fill.ph-list-checks:before {
  content: "\eadc";
}
.ph-fill.ph-list-dashes:before {
  content: "\e2f4";
}
.ph-fill.ph-list-heart:before {
  content: "\ebde";
}
.ph-fill.ph-list-magnifying-glass:before {
  content: "\ebe0";
}
.ph-fill.ph-list-numbers:before {
  content: "\e2f6";
}
.ph-fill.ph-list-plus:before {
  content: "\e2f8";
}
.ph-fill.ph-list-star:before {
  content: "\ebdc";
}
.ph-fill.ph-lock:before {
  content: "\e2fa";
}
.ph-fill.ph-lock-key:before {
  content: "\e2fe";
}
.ph-fill.ph-lock-key-open:before {
  content: "\e300";
}
.ph-fill.ph-lock-laminated:before {
  content: "\e302";
}
.ph-fill.ph-lock-laminated-open:before {
  content: "\e304";
}
.ph-fill.ph-lock-open:before {
  content: "\e306";
}
.ph-fill.ph-lock-simple:before {
  content: "\e308";
}
.ph-fill.ph-lock-simple-open:before {
  content: "\e30a";
}
.ph-fill.ph-lockers:before {
  content: "\ecb8";
}
.ph-fill.ph-log:before {
  content: "\ed82";
}
.ph-fill.ph-magic-wand:before {
  content: "\e6b6";
}
.ph-fill.ph-magnet:before {
  content: "\e680";
}
.ph-fill.ph-magnet-straight:before {
  content: "\e682";
}
.ph-fill.ph-magnifying-glass:before {
  content: "\e30c";
}
.ph-fill.ph-magnifying-glass-minus:before {
  content: "\e30e";
}
.ph-fill.ph-magnifying-glass-plus:before {
  content: "\e310";
}
.ph-fill.ph-mailbox:before {
  content: "\ec1e";
}
.ph-fill.ph-map-pin:before {
  content: "\e316";
}
.ph-fill.ph-map-pin-area:before {
  content: "\ee3a";
}
.ph-fill.ph-map-pin-line:before {
  content: "\e318";
}
.ph-fill.ph-map-pin-plus:before {
  content: "\e314";
}
.ph-fill.ph-map-pin-simple:before {
  content: "\ee3e";
}
.ph-fill.ph-map-pin-simple-area:before {
  content: "\ee3c";
}
.ph-fill.ph-map-pin-simple-line:before {
  content: "\ee38";
}
.ph-fill.ph-map-trifold:before {
  content: "\e31a";
}
.ph-fill.ph-markdown-logo:before {
  content: "\e508";
}
.ph-fill.ph-marker-circle:before {
  content: "\e640";
}
.ph-fill.ph-martini:before {
  content: "\e31c";
}
.ph-fill.ph-mask-happy:before {
  content: "\e9f4";
}
.ph-fill.ph-mask-sad:before {
  content: "\eb9e";
}
.ph-fill.ph-mastodon-logo:before {
  content: "\ed68";
}
.ph-fill.ph-math-operations:before {
  content: "\e31e";
}
.ph-fill.ph-matrix-logo:before {
  content: "\ed64";
}
.ph-fill.ph-medal:before {
  content: "\e320";
}
.ph-fill.ph-medal-military:before {
  content: "\ecfc";
}
.ph-fill.ph-medium-logo:before {
  content: "\e322";
}
.ph-fill.ph-megaphone:before {
  content: "\e324";
}
.ph-fill.ph-megaphone-simple:before {
  content: "\e642";
}
.ph-fill.ph-member-of:before {
  content: "\edc2";
}
.ph-fill.ph-memory:before {
  content: "\e9c4";
}
.ph-fill.ph-messenger-logo:before {
  content: "\e6d8";
}
.ph-fill.ph-meta-logo:before {
  content: "\ed02";
}
.ph-fill.ph-meteor:before {
  content: "\e9ba";
}
.ph-fill.ph-metronome:before {
  content: "\ec8e";
}
.ph-fill.ph-microphone:before {
  content: "\e326";
}
.ph-fill.ph-microphone-slash:before {
  content: "\e328";
}
.ph-fill.ph-microphone-stage:before {
  content: "\e75c";
}
.ph-fill.ph-microscope:before {
  content: "\ec7a";
}
.ph-fill.ph-microsoft-excel-logo:before {
  content: "\eb6c";
}
.ph-fill.ph-microsoft-outlook-logo:before {
  content: "\eb70";
}
.ph-fill.ph-microsoft-powerpoint-logo:before {
  content: "\eace";
}
.ph-fill.ph-microsoft-teams-logo:before {
  content: "\eb66";
}
.ph-fill.ph-microsoft-word-logo:before {
  content: "\eb6a";
}
.ph-fill.ph-minus:before {
  content: "\e32a";
}
.ph-fill.ph-minus-circle:before {
  content: "\e32c";
}
.ph-fill.ph-minus-square:before {
  content: "\ed4c";
}
.ph-fill.ph-money:before {
  content: "\e588";
}
.ph-fill.ph-money-wavy:before {
  content: "\ee68";
}
.ph-fill.ph-monitor:before {
  content: "\e32e";
}
.ph-fill.ph-monitor-arrow-up:before {
  content: "\e58a";
}
.ph-fill.ph-monitor-play:before {
  content: "\e58c";
}
.ph-fill.ph-moon:before {
  content: "\e330";
}
.ph-fill.ph-moon-stars:before {
  content: "\e58e";
}
.ph-fill.ph-moped:before {
  content: "\e824";
}
.ph-fill.ph-moped-front:before {
  content: "\e822";
}
.ph-fill.ph-mosque:before {
  content: "\ecee";
}
.ph-fill.ph-motorcycle:before {
  content: "\e80a";
}
.ph-fill.ph-mountains:before {
  content: "\e7ae";
}
.ph-fill.ph-mouse:before {
  content: "\e33a";
}
.ph-fill.ph-mouse-left-click:before {
  content: "\e334";
}
.ph-fill.ph-mouse-middle-click:before {
  content: "\e338";
}
.ph-fill.ph-mouse-right-click:before {
  content: "\e336";
}
.ph-fill.ph-mouse-scroll:before {
  content: "\e332";
}
.ph-fill.ph-mouse-simple:before {
  content: "\e644";
}
.ph-fill.ph-music-note:before {
  content: "\e33c";
}
.ph-fill.ph-music-note-simple:before {
  content: "\e33e";
}
.ph-fill.ph-music-notes:before {
  content: "\e340";
}
.ph-fill.ph-music-notes-minus:before {
  content: "\ee0c";
}
.ph-fill.ph-music-notes-plus:before {
  content: "\eb7c";
}
.ph-fill.ph-music-notes-simple:before {
  content: "\e342";
}
.ph-fill.ph-navigation-arrow:before {
  content: "\eade";
}
.ph-fill.ph-needle:before {
  content: "\e82e";
}
.ph-fill.ph-network:before {
  content: "\edde";
}
.ph-fill.ph-network-slash:before {
  content: "\eddc";
}
.ph-fill.ph-network-x:before {
  content: "\edda";
}
.ph-fill.ph-newspaper:before {
  content: "\e344";
}
.ph-fill.ph-newspaper-clipping:before {
  content: "\e346";
}
.ph-fill.ph-not-equals:before {
  content: "\eda6";
}
.ph-fill.ph-not-member-of:before {
  content: "\edae";
}
.ph-fill.ph-not-subset-of:before {
  content: "\edb0";
}
.ph-fill.ph-not-superset-of:before {
  content: "\edb2";
}
.ph-fill.ph-notches:before {
  content: "\ed3a";
}
.ph-fill.ph-note:before {
  content: "\e348";
}
.ph-fill.ph-note-blank:before {
  content: "\e34a";
}
.ph-fill.ph-note-pencil:before {
  content: "\e34c";
}
.ph-fill.ph-notebook:before {
  content: "\e34e";
}
.ph-fill.ph-notepad:before {
  content: "\e63e";
}
.ph-fill.ph-notification:before {
  content: "\e6fa";
}
.ph-fill.ph-notion-logo:before {
  content: "\e9a0";
}
.ph-fill.ph-nuclear-plant:before {
  content: "\ed7c";
}
.ph-fill.ph-number-circle-eight:before {
  content: "\e352";
}
.ph-fill.ph-number-circle-five:before {
  content: "\e358";
}
.ph-fill.ph-number-circle-four:before {
  content: "\e35e";
}
.ph-fill.ph-number-circle-nine:before {
  content: "\e364";
}
.ph-fill.ph-number-circle-one:before {
  content: "\e36a";
}
.ph-fill.ph-number-circle-seven:before {
  content: "\e370";
}
.ph-fill.ph-number-circle-six:before {
  content: "\e376";
}
.ph-fill.ph-number-circle-three:before {
  content: "\e37c";
}
.ph-fill.ph-number-circle-two:before {
  content: "\e382";
}
.ph-fill.ph-number-circle-zero:before {
  content: "\e388";
}
.ph-fill.ph-number-eight:before {
  content: "\e350";
}
.ph-fill.ph-number-five:before {
  content: "\e356";
}
.ph-fill.ph-number-four:before {
  content: "\e35c";
}
.ph-fill.ph-number-nine:before {
  content: "\e362";
}
.ph-fill.ph-number-one:before {
  content: "\e368";
}
.ph-fill.ph-number-seven:before {
  content: "\e36e";
}
.ph-fill.ph-number-six:before {
  content: "\e374";
}
.ph-fill.ph-number-square-eight:before {
  content: "\e354";
}
.ph-fill.ph-number-square-five:before {
  content: "\e35a";
}
.ph-fill.ph-number-square-four:before {
  content: "\e360";
}
.ph-fill.ph-number-square-nine:before {
  content: "\e366";
}
.ph-fill.ph-number-square-one:before {
  content: "\e36c";
}
.ph-fill.ph-number-square-seven:before {
  content: "\e372";
}
.ph-fill.ph-number-square-six:before {
  content: "\e378";
}
.ph-fill.ph-number-square-three:before {
  content: "\e37e";
}
.ph-fill.ph-number-square-two:before {
  content: "\e384";
}
.ph-fill.ph-number-square-zero:before {
  content: "\e38a";
}
.ph-fill.ph-number-three:before {
  content: "\e37a";
}
.ph-fill.ph-number-two:before {
  content: "\e380";
}
.ph-fill.ph-number-zero:before {
  content: "\e386";
}
.ph-fill.ph-numpad:before {
  content: "\e3c8";
}
.ph-fill.ph-nut:before {
  content: "\e38c";
}
.ph-fill.ph-ny-times-logo:before {
  content: "\e646";
}
.ph-fill.ph-octagon:before {
  content: "\e38e";
}
.ph-fill.ph-office-chair:before {
  content: "\ea46";
}
.ph-fill.ph-onigiri:before {
  content: "\ee2c";
}
.ph-fill.ph-open-ai-logo:before {
  content: "\e7d2";
}
.ph-fill.ph-option:before {
  content: "\e8a8";
}
.ph-fill.ph-orange:before {
  content: "\ee40";
}
.ph-fill.ph-orange-slice:before {
  content: "\ed36";
}
.ph-fill.ph-oven:before {
  content: "\ed8c";
}
.ph-fill.ph-package:before {
  content: "\e390";
}
.ph-fill.ph-paint-brush:before {
  content: "\e6f0";
}
.ph-fill.ph-paint-brush-broad:before {
  content: "\e590";
}
.ph-fill.ph-paint-brush-household:before {
  content: "\e6f2";
}
.ph-fill.ph-paint-bucket:before {
  content: "\e392";
}
.ph-fill.ph-paint-roller:before {
  content: "\e6f4";
}
.ph-fill.ph-palette:before {
  content: "\e6c8";
}
.ph-fill.ph-panorama:before {
  content: "\eaa2";
}
.ph-fill.ph-pants:before {
  content: "\ec88";
}
.ph-fill.ph-paper-plane:before {
  content: "\e394";
}
.ph-fill.ph-paper-plane-right:before {
  content: "\e396";
}
.ph-fill.ph-paper-plane-tilt:before {
  content: "\e398";
}
.ph-fill.ph-paperclip:before {
  content: "\e39a";
}
.ph-fill.ph-paperclip-horizontal:before {
  content: "\e592";
}
.ph-fill.ph-parachute:before {
  content: "\ea7c";
}
.ph-fill.ph-paragraph:before {
  content: "\e960";
}
.ph-fill.ph-parallelogram:before {
  content: "\ecc6";
}
.ph-fill.ph-park:before {
  content: "\ecb2";
}
.ph-fill.ph-password:before {
  content: "\e752";
}
.ph-fill.ph-path:before {
  content: "\e39c";
}
.ph-fill.ph-patreon-logo:before {
  content: "\e98a";
}
.ph-fill.ph-pause:before {
  content: "\e39e";
}
.ph-fill.ph-pause-circle:before {
  content: "\e3a0";
}
.ph-fill.ph-paw-print:before {
  content: "\e648";
}
.ph-fill.ph-paypal-logo:before {
  content: "\e98c";
}
.ph-fill.ph-peace:before {
  content: "\e3a2";
}
.ph-fill.ph-pen:before {
  content: "\e3aa";
}
.ph-fill.ph-pen-nib:before {
  content: "\e3ac";
}
.ph-fill.ph-pen-nib-straight:before {
  content: "\e64a";
}
.ph-fill.ph-pencil:before {
  content: "\e3ae";
}
.ph-fill.ph-pencil-circle:before {
  content: "\e3b0";
}
.ph-fill.ph-pencil-line:before {
  content: "\e3b2";
}
.ph-fill.ph-pencil-ruler:before {
  content: "\e906";
}
.ph-fill.ph-pencil-simple:before {
  content: "\e3b4";
}
.ph-fill.ph-pencil-simple-line:before {
  content: "\ebc6";
}
.ph-fill.ph-pencil-simple-slash:before {
  content: "\ecf6";
}
.ph-fill.ph-pencil-slash:before {
  content: "\ecf8";
}
.ph-fill.ph-pentagon:before {
  content: "\ec7e";
}
.ph-fill.ph-pentagram:before {
  content: "\ec5c";
}
.ph-fill.ph-pepper:before {
  content: "\e94a";
}
.ph-fill.ph-percent:before {
  content: "\e3b6";
}
.ph-fill.ph-person:before {
  content: "\e3a8";
}
.ph-fill.ph-person-arms-spread:before {
  content: "\ecfe";
}
.ph-fill.ph-person-simple:before {
  content: "\e72e";
}
.ph-fill.ph-person-simple-bike:before {
  content: "\e734";
}
.ph-fill.ph-person-simple-circle:before {
  content: "\ee58";
}
.ph-fill.ph-person-simple-hike:before {
  content: "\ed54";
}
.ph-fill.ph-person-simple-run:before {
  content: "\e730";
}
.ph-fill.ph-person-simple-ski:before {
  content: "\e71c";
}
.ph-fill.ph-person-simple-snowboard:before {
  content: "\e71e";
}
.ph-fill.ph-person-simple-swim:before {
  content: "\e736";
}
.ph-fill.ph-person-simple-tai-chi:before {
  content: "\ed5c";
}
.ph-fill.ph-person-simple-throw:before {
  content: "\e732";
}
.ph-fill.ph-person-simple-walk:before {
  content: "\e73a";
}
.ph-fill.ph-perspective:before {
  content: "\ebe6";
}
.ph-fill.ph-phone:before {
  content: "\e3b8";
}
.ph-fill.ph-phone-call:before {
  content: "\e3ba";
}
.ph-fill.ph-phone-disconnect:before {
  content: "\e3bc";
}
.ph-fill.ph-phone-incoming:before {
  content: "\e3be";
}
.ph-fill.ph-phone-list:before {
  content: "\e3cc";
}
.ph-fill.ph-phone-outgoing:before {
  content: "\e3c0";
}
.ph-fill.ph-phone-pause:before {
  content: "\e3ca";
}
.ph-fill.ph-phone-plus:before {
  content: "\ec56";
}
.ph-fill.ph-phone-slash:before {
  content: "\e3c2";
}
.ph-fill.ph-phone-transfer:before {
  content: "\e3c6";
}
.ph-fill.ph-phone-x:before {
  content: "\e3c4";
}
.ph-fill.ph-phosphor-logo:before {
  content: "\e3ce";
}
.ph-fill.ph-pi:before {
  content: "\ec80";
}
.ph-fill.ph-piano-keys:before {
  content: "\e9c8";
}
.ph-fill.ph-picnic-table:before {
  content: "\ee26";
}
.ph-fill.ph-picture-in-picture:before {
  content: "\e64c";
}
.ph-fill.ph-piggy-bank:before {
  content: "\ea04";
}
.ph-fill.ph-pill:before {
  content: "\e700";
}
.ph-fill.ph-ping-pong:before {
  content: "\ea42";
}
.ph-fill.ph-pint-glass:before {
  content: "\edd0";
}
.ph-fill.ph-pinterest-logo:before {
  content: "\e64e";
}
.ph-fill.ph-pinwheel:before {
  content: "\eb9c";
}
.ph-fill.ph-pipe:before {
  content: "\ed86";
}
.ph-fill.ph-pipe-wrench:before {
  content: "\ed88";
}
.ph-fill.ph-pix-logo:before {
  content: "\ecc2";
}
.ph-fill.ph-pizza:before {
  content: "\e796";
}
.ph-fill.ph-placeholder:before {
  content: "\e650";
}
.ph-fill.ph-planet:before {
  content: "\e652";
}
.ph-fill.ph-plant:before {
  content: "\ebae";
}
.ph-fill.ph-play:before {
  content: "\e3d0";
}
.ph-fill.ph-play-circle:before {
  content: "\e3d2";
}
.ph-fill.ph-play-pause:before {
  content: "\e8be";
}
.ph-fill.ph-playlist:before {
  content: "\e6aa";
}
.ph-fill.ph-plug:before {
  content: "\e946";
}
.ph-fill.ph-plug-charging:before {
  content: "\eb5c";
}
.ph-fill.ph-plugs:before {
  content: "\eb56";
}
.ph-fill.ph-plugs-connected:before {
  content: "\eb5a";
}
.ph-fill.ph-plus:before {
  content: "\e3d4";
}
.ph-fill.ph-plus-circle:before {
  content: "\e3d6";
}
.ph-fill.ph-plus-minus:before {
  content: "\e3d8";
}
.ph-fill.ph-plus-square:before {
  content: "\ed4a";
}
.ph-fill.ph-poker-chip:before {
  content: "\e594";
}
.ph-fill.ph-police-car:before {
  content: "\ec4a";
}
.ph-fill.ph-polygon:before {
  content: "\e6d0";
}
.ph-fill.ph-popcorn:before {
  content: "\eb4e";
}
.ph-fill.ph-popsicle:before {
  content: "\ebbe";
}
.ph-fill.ph-potted-plant:before {
  content: "\ec22";
}
.ph-fill.ph-power:before {
  content: "\e3da";
}
.ph-fill.ph-prescription:before {
  content: "\e7a2";
}
.ph-fill.ph-presentation:before {
  content: "\e654";
}
.ph-fill.ph-presentation-chart:before {
  content: "\e656";
}
.ph-fill.ph-printer:before {
  content: "\e3dc";
}
.ph-fill.ph-prohibit:before {
  content: "\e3de";
}
.ph-fill.ph-prohibit-inset:before {
  content: "\e3e0";
}
.ph-fill.ph-projector-screen:before {
  content: "\e658";
}
.ph-fill.ph-projector-screen-chart:before {
  content: "\e65a";
}
.ph-fill.ph-pulse:before {
  content: "\e000";
}
.ph-fill.ph-activity:before {
  content: "\e000";
}
.ph-fill.ph-push-pin:before {
  content: "\e3e2";
}
.ph-fill.ph-push-pin-simple:before {
  content: "\e65c";
}
.ph-fill.ph-push-pin-simple-slash:before {
  content: "\e65e";
}
.ph-fill.ph-push-pin-slash:before {
  content: "\e3e4";
}
.ph-fill.ph-puzzle-piece:before {
  content: "\e596";
}
.ph-fill.ph-qr-code:before {
  content: "\e3e6";
}
.ph-fill.ph-question:before {
  content: "\e3e8";
}
.ph-fill.ph-question-mark:before {
  content: "\e3e9";
}
.ph-fill.ph-queue:before {
  content: "\e6ac";
}
.ph-fill.ph-quotes:before {
  content: "\e660";
}
.ph-fill.ph-rabbit:before {
  content: "\eac2";
}
.ph-fill.ph-racquet:before {
  content: "\ee02";
}
.ph-fill.ph-radical:before {
  content: "\e3ea";
}
.ph-fill.ph-radio:before {
  content: "\e77e";
}
.ph-fill.ph-radio-button:before {
  content: "\eb08";
}
.ph-fill.ph-radioactive:before {
  content: "\e9dc";
}
.ph-fill.ph-rainbow:before {
  content: "\e598";
}
.ph-fill.ph-rainbow-cloud:before {
  content: "\e59a";
}
.ph-fill.ph-ranking:before {
  content: "\ed62";
}
.ph-fill.ph-read-cv-logo:before {
  content: "\ed0c";
}
.ph-fill.ph-receipt:before {
  content: "\e3ec";
}
.ph-fill.ph-receipt-x:before {
  content: "\ed40";
}
.ph-fill.ph-record:before {
  content: "\e3ee";
}
.ph-fill.ph-rectangle:before {
  content: "\e3f0";
}
.ph-fill.ph-rectangle-dashed:before {
  content: "\e3f2";
}
.ph-fill.ph-recycle:before {
  content: "\e75a";
}
.ph-fill.ph-reddit-logo:before {
  content: "\e59c";
}
.ph-fill.ph-repeat:before {
  content: "\e3f6";
}
.ph-fill.ph-repeat-once:before {
  content: "\e3f8";
}
.ph-fill.ph-replit-logo:before {
  content: "\eb8a";
}
.ph-fill.ph-resize:before {
  content: "\ed6e";
}
.ph-fill.ph-rewind:before {
  content: "\e6a8";
}
.ph-fill.ph-rewind-circle:before {
  content: "\e3fa";
}
.ph-fill.ph-road-horizon:before {
  content: "\e838";
}
.ph-fill.ph-robot:before {
  content: "\e762";
}
.ph-fill.ph-rocket:before {
  content: "\e3fc";
}
.ph-fill.ph-rocket-launch:before {
  content: "\e3fe";
}
.ph-fill.ph-rows:before {
  content: "\e5a2";
}
.ph-fill.ph-rows-plus-bottom:before {
  content: "\e59e";
}
.ph-fill.ph-rows-plus-top:before {
  content: "\e5a0";
}
.ph-fill.ph-rss:before {
  content: "\e400";
}
.ph-fill.ph-rss-simple:before {
  content: "\e402";
}
.ph-fill.ph-rug:before {
  content: "\ea1a";
}
.ph-fill.ph-ruler:before {
  content: "\e6b8";
}
.ph-fill.ph-sailboat:before {
  content: "\e78a";
}
.ph-fill.ph-scales:before {
  content: "\e750";
}
.ph-fill.ph-scan:before {
  content: "\ebb6";
}
.ph-fill.ph-scan-smiley:before {
  content: "\ebb4";
}
.ph-fill.ph-scissors:before {
  content: "\eae0";
}
.ph-fill.ph-scooter:before {
  content: "\e820";
}
.ph-fill.ph-screencast:before {
  content: "\e404";
}
.ph-fill.ph-screwdriver:before {
  content: "\e86e";
}
.ph-fill.ph-scribble:before {
  content: "\e806";
}
.ph-fill.ph-scribble-loop:before {
  content: "\e662";
}
.ph-fill.ph-scroll:before {
  content: "\eb7a";
}
.ph-fill.ph-seal:before {
  content: "\e604";
}
.ph-fill.ph-circle-wavy:before {
  content: "\e604";
}
.ph-fill.ph-seal-check:before {
  content: "\e606";
}
.ph-fill.ph-circle-wavy-check:before {
  content: "\e606";
}
.ph-fill.ph-seal-percent:before {
  content: "\e60a";
}
.ph-fill.ph-seal-question:before {
  content: "\e608";
}
.ph-fill.ph-circle-wavy-question:before {
  content: "\e608";
}
.ph-fill.ph-seal-warning:before {
  content: "\e60c";
}
.ph-fill.ph-circle-wavy-warning:before {
  content: "\e60c";
}
.ph-fill.ph-seat:before {
  content: "\eb8e";
}
.ph-fill.ph-seatbelt:before {
  content: "\edfe";
}
.ph-fill.ph-security-camera:before {
  content: "\eca4";
}
.ph-fill.ph-selection:before {
  content: "\e69a";
}
.ph-fill.ph-selection-all:before {
  content: "\e746";
}
.ph-fill.ph-selection-background:before {
  content: "\eaf8";
}
.ph-fill.ph-selection-foreground:before {
  content: "\eaf6";
}
.ph-fill.ph-selection-inverse:before {
  content: "\e744";
}
.ph-fill.ph-selection-plus:before {
  content: "\e69c";
}
.ph-fill.ph-selection-slash:before {
  content: "\e69e";
}
.ph-fill.ph-shapes:before {
  content: "\ec5e";
}
.ph-fill.ph-share:before {
  content: "\e406";
}
.ph-fill.ph-share-fat:before {
  content: "\ed52";
}
.ph-fill.ph-share-network:before {
  content: "\e408";
}
.ph-fill.ph-shield:before {
  content: "\e40a";
}
.ph-fill.ph-shield-check:before {
  content: "\e40c";
}
.ph-fill.ph-shield-checkered:before {
  content: "\e708";
}
.ph-fill.ph-shield-chevron:before {
  content: "\e40e";
}
.ph-fill.ph-shield-plus:before {
  content: "\e706";
}
.ph-fill.ph-shield-slash:before {
  content: "\e410";
}
.ph-fill.ph-shield-star:before {
  content: "\ec34";
}
.ph-fill.ph-shield-warning:before {
  content: "\e412";
}
.ph-fill.ph-shipping-container:before {
  content: "\e78c";
}
.ph-fill.ph-shirt-folded:before {
  content: "\ea92";
}
.ph-fill.ph-shooting-star:before {
  content: "\ecfa";
}
.ph-fill.ph-shopping-bag:before {
  content: "\e416";
}
.ph-fill.ph-shopping-bag-open:before {
  content: "\e418";
}
.ph-fill.ph-shopping-cart:before {
  content: "\e41e";
}
.ph-fill.ph-shopping-cart-simple:before {
  content: "\e420";
}
.ph-fill.ph-shovel:before {
  content: "\e9e6";
}
.ph-fill.ph-shower:before {
  content: "\e776";
}
.ph-fill.ph-shrimp:before {
  content: "\eab4";
}
.ph-fill.ph-shuffle:before {
  content: "\e422";
}
.ph-fill.ph-shuffle-angular:before {
  content: "\e424";
}
.ph-fill.ph-shuffle-simple:before {
  content: "\e426";
}
.ph-fill.ph-sidebar:before {
  content: "\eab6";
}
.ph-fill.ph-sidebar-simple:before {
  content: "\ec24";
}
.ph-fill.ph-sigma:before {
  content: "\eab8";
}
.ph-fill.ph-sign-in:before {
  content: "\e428";
}
.ph-fill.ph-sign-out:before {
  content: "\e42a";
}
.ph-fill.ph-signature:before {
  content: "\ebac";
}
.ph-fill.ph-signpost:before {
  content: "\e89c";
}
.ph-fill.ph-sim-card:before {
  content: "\e664";
}
.ph-fill.ph-siren:before {
  content: "\e9b8";
}
.ph-fill.ph-sketch-logo:before {
  content: "\e42c";
}
.ph-fill.ph-skip-back:before {
  content: "\e5a4";
}
.ph-fill.ph-skip-back-circle:before {
  content: "\e42e";
}
.ph-fill.ph-skip-forward:before {
  content: "\e5a6";
}
.ph-fill.ph-skip-forward-circle:before {
  content: "\e430";
}
.ph-fill.ph-skull:before {
  content: "\e916";
}
.ph-fill.ph-skype-logo:before {
  content: "\e8dc";
}
.ph-fill.ph-slack-logo:before {
  content: "\e5a8";
}
.ph-fill.ph-sliders:before {
  content: "\e432";
}
.ph-fill.ph-sliders-horizontal:before {
  content: "\e434";
}
.ph-fill.ph-slideshow:before {
  content: "\ed32";
}
.ph-fill.ph-smiley:before {
  content: "\e436";
}
.ph-fill.ph-smiley-angry:before {
  content: "\ec62";
}
.ph-fill.ph-smiley-blank:before {
  content: "\e438";
}
.ph-fill.ph-smiley-meh:before {
  content: "\e43a";
}
.ph-fill.ph-smiley-melting:before {
  content: "\ee56";
}
.ph-fill.ph-smiley-nervous:before {
  content: "\e43c";
}
.ph-fill.ph-smiley-sad:before {
  content: "\e43e";
}
.ph-fill.ph-smiley-sticker:before {
  content: "\e440";
}
.ph-fill.ph-smiley-wink:before {
  content: "\e666";
}
.ph-fill.ph-smiley-x-eyes:before {
  content: "\e442";
}
.ph-fill.ph-snapchat-logo:before {
  content: "\e668";
}
.ph-fill.ph-sneaker:before {
  content: "\e80c";
}
.ph-fill.ph-sneaker-move:before {
  content: "\ed60";
}
.ph-fill.ph-snowflake:before {
  content: "\e5aa";
}
.ph-fill.ph-soccer-ball:before {
  content: "\e716";
}
.ph-fill.ph-sock:before {
  content: "\ecce";
}
.ph-fill.ph-solar-panel:before {
  content: "\ed7a";
}
.ph-fill.ph-solar-roof:before {
  content: "\ed7b";
}
.ph-fill.ph-sort-ascending:before {
  content: "\e444";
}
.ph-fill.ph-sort-descending:before {
  content: "\e446";
}
.ph-fill.ph-soundcloud-logo:before {
  content: "\e8de";
}
.ph-fill.ph-spade:before {
  content: "\e448";
}
.ph-fill.ph-sparkle:before {
  content: "\e6a2";
}
.ph-fill.ph-speaker-hifi:before {
  content: "\ea08";
}
.ph-fill.ph-speaker-high:before {
  content: "\e44a";
}
.ph-fill.ph-speaker-low:before {
  content: "\e44c";
}
.ph-fill.ph-speaker-none:before {
  content: "\e44e";
}
.ph-fill.ph-speaker-simple-high:before {
  content: "\e450";
}
.ph-fill.ph-speaker-simple-low:before {
  content: "\e452";
}
.ph-fill.ph-speaker-simple-none:before {
  content: "\e454";
}
.ph-fill.ph-speaker-simple-slash:before {
  content: "\e456";
}
.ph-fill.ph-speaker-simple-x:before {
  content: "\e458";
}
.ph-fill.ph-speaker-slash:before {
  content: "\e45a";
}
.ph-fill.ph-speaker-x:before {
  content: "\e45c";
}
.ph-fill.ph-speedometer:before {
  content: "\ee74";
}
.ph-fill.ph-sphere:before {
  content: "\ee66";
}
.ph-fill.ph-spinner:before {
  content: "\e66a";
}
.ph-fill.ph-spinner-ball:before {
  content: "\ee28";
}
.ph-fill.ph-spinner-gap:before {
  content: "\e66c";
}
.ph-fill.ph-spiral:before {
  content: "\e9fa";
}
.ph-fill.ph-split-horizontal:before {
  content: "\e872";
}
.ph-fill.ph-split-vertical:before {
  content: "\e876";
}
.ph-fill.ph-spotify-logo:before {
  content: "\e66e";
}
.ph-fill.ph-spray-bottle:before {
  content: "\e7e4";
}
.ph-fill.ph-square:before {
  content: "\e45e";
}
.ph-fill.ph-square-half:before {
  content: "\e462";
}
.ph-fill.ph-square-half-bottom:before {
  content: "\eb16";
}
.ph-fill.ph-square-logo:before {
  content: "\e690";
}
.ph-fill.ph-square-split-horizontal:before {
  content: "\e870";
}
.ph-fill.ph-square-split-vertical:before {
  content: "\e874";
}
.ph-fill.ph-squares-four:before {
  content: "\e464";
}
.ph-fill.ph-stack:before {
  content: "\e466";
}
.ph-fill.ph-stack-minus:before {
  content: "\edf4";
}
.ph-fill.ph-stack-overflow-logo:before {
  content: "\eb78";
}
.ph-fill.ph-stack-plus:before {
  content: "\edf6";
}
.ph-fill.ph-stack-simple:before {
  content: "\e468";
}
.ph-fill.ph-stairs:before {
  content: "\e8ec";
}
.ph-fill.ph-stamp:before {
  content: "\ea48";
}
.ph-fill.ph-standard-definition:before {
  content: "\ea90";
}
.ph-fill.ph-star:before {
  content: "\e46a";
}
.ph-fill.ph-star-and-crescent:before {
  content: "\ecf4";
}
.ph-fill.ph-star-four:before {
  content: "\e6a4";
}
.ph-fill.ph-star-half:before {
  content: "\e70a";
}
.ph-fill.ph-star-of-david:before {
  content: "\e89e";
}
.ph-fill.ph-steam-logo:before {
  content: "\ead4";
}
.ph-fill.ph-steering-wheel:before {
  content: "\e9ac";
}
.ph-fill.ph-steps:before {
  content: "\ecbe";
}
.ph-fill.ph-stethoscope:before {
  content: "\e7ea";
}
.ph-fill.ph-sticker:before {
  content: "\e5ac";
}
.ph-fill.ph-stool:before {
  content: "\ea44";
}
.ph-fill.ph-stop:before {
  content: "\e46c";
}
.ph-fill.ph-stop-circle:before {
  content: "\e46e";
}
.ph-fill.ph-storefront:before {
  content: "\e470";
}
.ph-fill.ph-strategy:before {
  content: "\ea3a";
}
.ph-fill.ph-stripe-logo:before {
  content: "\e698";
}
.ph-fill.ph-student:before {
  content: "\e73e";
}
.ph-fill.ph-subset-of:before {
  content: "\edc0";
}
.ph-fill.ph-subset-proper-of:before {
  content: "\edb6";
}
.ph-fill.ph-subtitles:before {
  content: "\e1a8";
}
.ph-fill.ph-subtitles-slash:before {
  content: "\e1a6";
}
.ph-fill.ph-subtract:before {
  content: "\ebd6";
}
.ph-fill.ph-subtract-square:before {
  content: "\ebd4";
}
.ph-fill.ph-subway:before {
  content: "\e498";
}
.ph-fill.ph-suitcase:before {
  content: "\e5ae";
}
.ph-fill.ph-suitcase-rolling:before {
  content: "\e9b0";
}
.ph-fill.ph-suitcase-simple:before {
  content: "\e5b0";
}
.ph-fill.ph-sun:before {
  content: "\e472";
}
.ph-fill.ph-sun-dim:before {
  content: "\e474";
}
.ph-fill.ph-sun-horizon:before {
  content: "\e5b6";
}
.ph-fill.ph-sunglasses:before {
  content: "\e816";
}
.ph-fill.ph-superset-of:before {
  content: "\edb8";
}
.ph-fill.ph-superset-proper-of:before {
  content: "\edb4";
}
.ph-fill.ph-swap:before {
  content: "\e83c";
}
.ph-fill.ph-swatches:before {
  content: "\e5b8";
}
.ph-fill.ph-swimming-pool:before {
  content: "\ecb6";
}
.ph-fill.ph-sword:before {
  content: "\e5ba";
}
.ph-fill.ph-synagogue:before {
  content: "\ecec";
}
.ph-fill.ph-syringe:before {
  content: "\e968";
}
.ph-fill.ph-t-shirt:before {
  content: "\e670";
}
.ph-fill.ph-table:before {
  content: "\e476";
}
.ph-fill.ph-tabs:before {
  content: "\e778";
}
.ph-fill.ph-tag:before {
  content: "\e478";
}
.ph-fill.ph-tag-chevron:before {
  content: "\e672";
}
.ph-fill.ph-tag-simple:before {
  content: "\e47a";
}
.ph-fill.ph-target:before {
  content: "\e47c";
}
.ph-fill.ph-taxi:before {
  content: "\e902";
}
.ph-fill.ph-tea-bag:before {
  content: "\e8e6";
}
.ph-fill.ph-telegram-logo:before {
  content: "\e5bc";
}
.ph-fill.ph-television:before {
  content: "\e754";
}
.ph-fill.ph-television-simple:before {
  content: "\eae6";
}
.ph-fill.ph-tennis-ball:before {
  content: "\e720";
}
.ph-fill.ph-tent:before {
  content: "\e8ba";
}
.ph-fill.ph-terminal:before {
  content: "\e47e";
}
.ph-fill.ph-terminal-window:before {
  content: "\eae8";
}
.ph-fill.ph-test-tube:before {
  content: "\e7a0";
}
.ph-fill.ph-text-a-underline:before {
  content: "\ed34";
}
.ph-fill.ph-text-aa:before {
  content: "\e6ee";
}
.ph-fill.ph-text-align-center:before {
  content: "\e480";
}
.ph-fill.ph-text-align-justify:before {
  content: "\e482";
}
.ph-fill.ph-text-align-left:before {
  content: "\e484";
}
.ph-fill.ph-text-align-right:before {
  content: "\e486";
}
.ph-fill.ph-text-b:before {
  content: "\e5be";
}
.ph-fill.ph-text-bolder:before {
  content: "\e5be";
}
.ph-fill.ph-text-columns:before {
  content: "\ec96";
}
.ph-fill.ph-text-h:before {
  content: "\e6ba";
}
.ph-fill.ph-text-h-five:before {
  content: "\e6c4";
}
.ph-fill.ph-text-h-four:before {
  content: "\e6c2";
}
.ph-fill.ph-text-h-one:before {
  content: "\e6bc";
}
.ph-fill.ph-text-h-six:before {
  content: "\e6c6";
}
.ph-fill.ph-text-h-three:before {
  content: "\e6c0";
}
.ph-fill.ph-text-h-two:before {
  content: "\e6be";
}
.ph-fill.ph-text-indent:before {
  content: "\ea1e";
}
.ph-fill.ph-text-italic:before {
  content: "\e5c0";
}
.ph-fill.ph-text-outdent:before {
  content: "\ea1c";
}
.ph-fill.ph-text-strikethrough:before {
  content: "\e5c2";
}
.ph-fill.ph-text-subscript:before {
  content: "\ec98";
}
.ph-fill.ph-text-superscript:before {
  content: "\ec9a";
}
.ph-fill.ph-text-t:before {
  content: "\e48a";
}
.ph-fill.ph-text-t-slash:before {
  content: "\e488";
}
.ph-fill.ph-text-underline:before {
  content: "\e5c4";
}
.ph-fill.ph-textbox:before {
  content: "\eb0a";
}
.ph-fill.ph-thermometer:before {
  content: "\e5c6";
}
.ph-fill.ph-thermometer-cold:before {
  content: "\e5c8";
}
.ph-fill.ph-thermometer-hot:before {
  content: "\e5ca";
}
.ph-fill.ph-thermometer-simple:before {
  content: "\e5cc";
}
.ph-fill.ph-threads-logo:before {
  content: "\ed9e";
}
.ph-fill.ph-three-d:before {
  content: "\ea5a";
}
.ph-fill.ph-thumbs-down:before {
  content: "\e48c";
}
.ph-fill.ph-thumbs-up:before {
  content: "\e48e";
}
.ph-fill.ph-ticket:before {
  content: "\e490";
}
.ph-fill.ph-tidal-logo:before {
  content: "\ed1c";
}
.ph-fill.ph-tiktok-logo:before {
  content: "\eaf2";
}
.ph-fill.ph-tilde:before {
  content: "\eda8";
}
.ph-fill.ph-timer:before {
  content: "\e492";
}
.ph-fill.ph-tip-jar:before {
  content: "\e7e2";
}
.ph-fill.ph-tipi:before {
  content: "\ed30";
}
.ph-fill.ph-tire:before {
  content: "\edd2";
}
.ph-fill.ph-toggle-left:before {
  content: "\e674";
}
.ph-fill.ph-toggle-right:before {
  content: "\e676";
}
.ph-fill.ph-toilet:before {
  content: "\e79a";
}
.ph-fill.ph-toilet-paper:before {
  content: "\e79c";
}
.ph-fill.ph-toolbox:before {
  content: "\eca0";
}
.ph-fill.ph-tooth:before {
  content: "\e9cc";
}
.ph-fill.ph-tornado:before {
  content: "\e88c";
}
.ph-fill.ph-tote:before {
  content: "\e494";
}
.ph-fill.ph-tote-simple:before {
  content: "\e678";
}
.ph-fill.ph-towel:before {
  content: "\ede6";
}
.ph-fill.ph-tractor:before {
  content: "\ec6e";
}
.ph-fill.ph-trademark:before {
  content: "\e9f0";
}
.ph-fill.ph-trademark-registered:before {
  content: "\e3f4";
}
.ph-fill.ph-traffic-cone:before {
  content: "\e9a8";
}
.ph-fill.ph-traffic-sign:before {
  content: "\e67a";
}
.ph-fill.ph-traffic-signal:before {
  content: "\e9aa";
}
.ph-fill.ph-train:before {
  content: "\e496";
}
.ph-fill.ph-train-regional:before {
  content: "\e49e";
}
.ph-fill.ph-train-simple:before {
  content: "\e4a0";
}
.ph-fill.ph-tram:before {
  content: "\e9ec";
}
.ph-fill.ph-translate:before {
  content: "\e4a2";
}
.ph-fill.ph-trash:before {
  content: "\e4a6";
}
.ph-fill.ph-trash-simple:before {
  content: "\e4a8";
}
.ph-fill.ph-tray:before {
  content: "\e4aa";
}
.ph-fill.ph-tray-arrow-down:before {
  content: "\e010";
}
.ph-fill.ph-archive-tray:before {
  content: "\e010";
}
.ph-fill.ph-tray-arrow-up:before {
  content: "\ee52";
}
.ph-fill.ph-treasure-chest:before {
  content: "\ede2";
}
.ph-fill.ph-tree:before {
  content: "\e6da";
}
.ph-fill.ph-tree-evergreen:before {
  content: "\e6dc";
}
.ph-fill.ph-tree-palm:before {
  content: "\e91a";
}
.ph-fill.ph-tree-structure:before {
  content: "\e67c";
}
.ph-fill.ph-tree-view:before {
  content: "\ee48";
}
.ph-fill.ph-trend-down:before {
  content: "\e4ac";
}
.ph-fill.ph-trend-up:before {
  content: "\e4ae";
}
.ph-fill.ph-triangle:before {
  content: "\e4b0";
}
.ph-fill.ph-triangle-dashed:before {
  content: "\e4b2";
}
.ph-fill.ph-trolley:before {
  content: "\e5b2";
}
.ph-fill.ph-trolley-suitcase:before {
  content: "\e5b4";
}
.ph-fill.ph-trophy:before {
  content: "\e67e";
}
.ph-fill.ph-truck:before {
  content: "\e4b4";
}
.ph-fill.ph-truck-trailer:before {
  content: "\e4b6";
}
.ph-fill.ph-tumblr-logo:before {
  content: "\e8d4";
}
.ph-fill.ph-twitch-logo:before {
  content: "\e5ce";
}
.ph-fill.ph-twitter-logo:before {
  content: "\e4ba";
}
.ph-fill.ph-umbrella:before {
  content: "\e684";
}
.ph-fill.ph-umbrella-simple:before {
  content: "\e686";
}
.ph-fill.ph-union:before {
  content: "\edbe";
}
.ph-fill.ph-unite:before {
  content: "\e87e";
}
.ph-fill.ph-unite-square:before {
  content: "\e878";
}
.ph-fill.ph-upload:before {
  content: "\e4be";
}
.ph-fill.ph-upload-simple:before {
  content: "\e4c0";
}
.ph-fill.ph-usb:before {
  content: "\e956";
}
.ph-fill.ph-user:before {
  content: "\e4c2";
}
.ph-fill.ph-user-check:before {
  content: "\eafa";
}
.ph-fill.ph-user-circle:before {
  content: "\e4c4";
}
.ph-fill.ph-user-circle-check:before {
  content: "\ec38";
}
.ph-fill.ph-user-circle-dashed:before {
  content: "\ec36";
}
.ph-fill.ph-user-circle-gear:before {
  content: "\e4c6";
}
.ph-fill.ph-user-circle-minus:before {
  content: "\e4c8";
}
.ph-fill.ph-user-circle-plus:before {
  content: "\e4ca";
}
.ph-fill.ph-user-focus:before {
  content: "\e6fc";
}
.ph-fill.ph-user-gear:before {
  content: "\e4cc";
}
.ph-fill.ph-user-list:before {
  content: "\e73c";
}
.ph-fill.ph-user-minus:before {
  content: "\e4ce";
}
.ph-fill.ph-user-plus:before {
  content: "\e4d0";
}
.ph-fill.ph-user-rectangle:before {
  content: "\e4d2";
}
.ph-fill.ph-user-sound:before {
  content: "\eca8";
}
.ph-fill.ph-user-square:before {
  content: "\e4d4";
}
.ph-fill.ph-user-switch:before {
  content: "\e756";
}
.ph-fill.ph-users:before {
  content: "\e4d6";
}
.ph-fill.ph-users-four:before {
  content: "\e68c";
}
.ph-fill.ph-users-three:before {
  content: "\e68e";
}
.ph-fill.ph-van:before {
  content: "\e826";
}
.ph-fill.ph-vault:before {
  content: "\e76e";
}
.ph-fill.ph-vector-three:before {
  content: "\ee62";
}
.ph-fill.ph-vector-two:before {
  content: "\ee64";
}
.ph-fill.ph-vibrate:before {
  content: "\e4d8";
}
.ph-fill.ph-video:before {
  content: "\e740";
}
.ph-fill.ph-video-camera:before {
  content: "\e4da";
}
.ph-fill.ph-video-camera-slash:before {
  content: "\e4dc";
}
.ph-fill.ph-video-conference:before {
  content: "\edce";
}
.ph-fill.ph-vignette:before {
  content: "\eba2";
}
.ph-fill.ph-vinyl-record:before {
  content: "\ecac";
}
.ph-fill.ph-virtual-reality:before {
  content: "\e7b8";
}
.ph-fill.ph-virus:before {
  content: "\e7d6";
}
.ph-fill.ph-visor:before {
  content: "\ee2a";
}
.ph-fill.ph-voicemail:before {
  content: "\e4de";
}
.ph-fill.ph-volleyball:before {
  content: "\e726";
}
.ph-fill.ph-wall:before {
  content: "\e688";
}
.ph-fill.ph-wallet:before {
  content: "\e68a";
}
.ph-fill.ph-warehouse:before {
  content: "\ecd4";
}
.ph-fill.ph-warning:before {
  content: "\e4e0";
}
.ph-fill.ph-warning-circle:before {
  content: "\e4e2";
}
.ph-fill.ph-warning-diamond:before {
  content: "\e7fc";
}
.ph-fill.ph-warning-octagon:before {
  content: "\e4e4";
}
.ph-fill.ph-washing-machine:before {
  content: "\ede8";
}
.ph-fill.ph-watch:before {
  content: "\e4e6";
}
.ph-fill.ph-wave-sawtooth:before {
  content: "\ea9c";
}
.ph-fill.ph-wave-sine:before {
  content: "\ea9a";
}
.ph-fill.ph-wave-square:before {
  content: "\ea9e";
}
.ph-fill.ph-wave-triangle:before {
  content: "\eaa0";
}
.ph-fill.ph-waveform:before {
  content: "\e802";
}
.ph-fill.ph-waveform-slash:before {
  content: "\e800";
}
.ph-fill.ph-waves:before {
  content: "\e6de";
}
.ph-fill.ph-webcam:before {
  content: "\e9b2";
}
.ph-fill.ph-webcam-slash:before {
  content: "\ecdc";
}
.ph-fill.ph-webhooks-logo:before {
  content: "\ecae";
}
.ph-fill.ph-wechat-logo:before {
  content: "\e8d2";
}
.ph-fill.ph-whatsapp-logo:before {
  content: "\e5d0";
}
.ph-fill.ph-wheelchair:before {
  content: "\e4e8";
}
.ph-fill.ph-wheelchair-motion:before {
  content: "\e89a";
}
.ph-fill.ph-wifi-high:before {
  content: "\e4ea";
}
.ph-fill.ph-wifi-low:before {
  content: "\e4ec";
}
.ph-fill.ph-wifi-medium:before {
  content: "\e4ee";
}
.ph-fill.ph-wifi-none:before {
  content: "\e4f0";
}
.ph-fill.ph-wifi-slash:before {
  content: "\e4f2";
}
.ph-fill.ph-wifi-x:before {
  content: "\e4f4";
}
.ph-fill.ph-wind:before {
  content: "\e5d2";
}
.ph-fill.ph-windmill:before {
  content: "\e9f8";
}
.ph-fill.ph-windows-logo:before {
  content: "\e692";
}
.ph-fill.ph-wine:before {
  content: "\e6b2";
}
.ph-fill.ph-wrench:before {
  content: "\e5d4";
}
.ph-fill.ph-x:before {
  content: "\e4f6";
}
.ph-fill.ph-x-circle:before {
  content: "\e4f8";
}
.ph-fill.ph-x-logo:before {
  content: "\e4bc";
}
.ph-fill.ph-x-square:before {
  content: "\e4fa";
}
.ph-fill.ph-yarn:before {
  content: "\ed9a";
}
.ph-fill.ph-yin-yang:before {
  content: "\e92a";
}
.ph-fill.ph-youtube-logo:before {
  content: "\e4fc";
}



/* Merged Block */
.press-contact-box {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(37, 99, 235, 0.05);
            border: 1px solid rgba(37, 99, 235, 0.2);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 24px;
        }
        .press-contact-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            object-fit: cover;
        }
        .press-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 16px;
        }
        @media (max-width: 768px) {
            .press-grid { grid-template-columns: 1fr; }
            .press-contact-box { flex-direction: column; text-align: center; }
        }
/* Merged Block */
/* CSS copied from index.php footer */
.site-footer { 
    background: var(--bg-elevated); 
    border-top: 1px solid var(--border-color); 
    padding: 64px 0 24px; 
    margin-top: 64px; 
}
.footer-accordion { display: none; } /* Kept for backwards compatibility if needed */
.footer-manifesto-grid { 
    max-width: 1100px; 
    margin: 0 auto 64px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 32px; 
}
.footer-manifesto-col {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s, border-color 0.2s;
}
.footer-manifesto-col:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}
.footer-manifesto-col h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-manifesto-col h3 i {
    color: var(--primary);
    font-size: 20px;
}
.footer-manifesto-col p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.footer-accordion summary { 
    padding: 20px; 
    font-weight: 800; 
    font-size: 16px; 
    cursor: pointer; 
    list-style: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion summary::after { 
    content: '\25BC'; 
    font-size: 12px; 
    color: var(--primary); 
    transition: transform 0.3s; 
}
.footer-accordion details[open] summary::after { transform: rotate(180deg); }
.footer-accordion .accordion-content { 
    padding: 0 20px 20px; 
    color: var(--text-secondary); 
    font-size: 14px; 
    line-height: 1.8; 
    border-top: 1px solid var(--border-color); 
    margin-top: 8px; 
    padding-top: 20px; 
}

.authority-links { max-width: 1000px; margin: 0 auto; }
.authority-title { 
    text-align: center; 
    font-size: 14px; 
    font-weight: 800; 
    color: #94a3b8; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    margin-bottom: 24px; 
}
.resource-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 16px; 
}
.resource-card { 
    background: rgba(255,255,255,0.02); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    padding: 16px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    text-decoration: none; 
    color: #ffffff; 
    transition: all 0.2s; 
}
.resource-card i { font-size: 24px; color: var(--text-primary); }
.resource-card span { font-size: 13px; font-weight: 700; }
.resource-card:hover { 
    background: var(--surface-color); 
    border-color: var(--primary); 
    color: var(--primary); 
    transform: translateY(-2px); 
}
.resource-card:hover i { color: var(--primary); }

.mobile-bottom-bar { 
    display: none; 
    position: fixed; 
    bottom: 0; left: 0; width: 100%; 
    background: rgba(15, 17, 23, 0.95); 
    backdrop-filter: blur(12px); 
    border-top: 1px solid var(--border-color); 
    z-index: 1000; 
    padding: 12px 16px; 
    padding-bottom: calc(12px + var(--safe-bottom)); 
}
.mobile-bottom-bar a { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 4px; 
    text-decoration: none; 
    color: #e2e8f0; 
    font-size: 11px; 
    font-weight: 700; 
}
.mobile-bottom-bar a.active { color: #60A5FA; }

@media (max-width: 768px) {
    .mobile-bottom-bar { display: flex; justify-content: space-between; }
}

/* Three Column Watch Links Layout */
.footer-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}
.footer-guide-col h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 800;
}
.footer-guide-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-bottom-bar {
    margin-top: 48px;
    border-top: 1px solid #ffffff10;
    padding-top: 28px;
    text-align: center;
    width: 100%;
}
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 20px;
    margin-bottom: 20px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 4px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #2563eb; }
.footer-bottom-links .footer-link-rg {
    color: #f87171 !important;
    font-weight: 700;
    gap: 5px;
}
.footer-bottom-links .footer-link-rg:hover { color: #fca5a5 !important; }
.footer-copyright {
    display: block;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
    padding-bottom: 8px;
    width: 100%;
}
.footer-guide-col a:hover { color: #2563eb; text-decoration: underline; }
/* Merged Block */
.faq-grid {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        details.faq-item {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        details.faq-item[open] {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(37,99,235,0.1);
        }
        
        details.faq-item summary {
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-primary);
            list-style: none;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        details.faq-item summary::-webkit-details-marker {
            display: none;
        }
        
        details.faq-item summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 400;
            line-height: 1;
            transition: transform 0.3s ease;
        }
        
        details.faq-item[open] summary::after {
            content: '-';
            color: var(--text-primary);
        }
        
        .faq-answer {
            padding: 0 24px 24px 24px;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .faq-answer p:not(:last-child) {
            margin-bottom: 12px;
        }
        
        .faq-answer a {
            color: var(--primary);
            font-weight: 600;
        }
        
        .faq-answer a:hover {
            text-decoration: underline;
        }

        .faq-section-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin: 3rem 0 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-section-title i {
            color: var(--primary);
        }
/* Merged Block */
a{text-decoration:none;color:inherit;transition:all 0.2s;}

        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}

        .breadcrumb a{color:var(--text-secondary);display:flex;align-items:center;gap:4px;}.breadcrumb a:hover{color:var(--primary);}

        .hero{padding:52px 0 36px;text-align:center;position:relative;overflow:hidden;}

        .hero::before{content:'';position:absolute;top:-80px;left:50%;transform:translateX(-50%);width:600px;height:300px;background:radial-gradient(circle,rgba(59,130,246,0.1) 0%,transparent 70%);pointer-events:none;}

        .hero-flag{font-size:3.5rem;margin-bottom:14px;line-height:1;}

        .hero-flag .fi{border-radius:6px;box-shadow:0 4px 12px rgba(0,0,0,0.4);}

        .hero h1{font-size:clamp(24px,4.5vw,46px);font-weight:900;letter-spacing:-1.5px;margin-bottom:10px;line-height:1.1;color:#f8fafc;}

        .hero p{color:var(--text-secondary);max-width:640px;margin:0 auto 22px;font-size:16px;line-height:1.7;font-weight:500;}

        .hero-stats{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}

        .stat-pill{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:12px;font-size:13px;font-weight:700;color:var(--text-secondary);box-shadow:var(--shadow);}

        .stat-pill strong{color:var(--text-primary);}.stat-pill i{color:var(--primary);}

        .country-meta{display:flex;justify-content:center;align-items:center;gap:20px;flex-wrap:wrap;margin-bottom:28px;padding-bottom:24px;border-bottom:1px solid var(--border-color);}

        .meta-item{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text-secondary);font-weight:600;}

        .meta-item i{color:var(--primary);}

        .type-strip{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-bottom:22px;}

        .type-chip{padding:5px 12px;border-radius:20px;font-size:12px;font-weight:700;background:rgba(37,99,235,0.08);border:1px solid rgba(37,99,235,0.18);color:#93c5fd;display:flex;align-items:center;gap:5px;}

        .search-wrap{position:relative;margin-bottom:20px;}

        .search-wrap input{width:100%;padding:13px 20px 13px 46px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;color:var(--text-primary);font-size:15px;font-family:inherit;outline:none;transition:border-color 0.2s;}

        .search-wrap input:focus{border-color:var(--primary);}

        .search-wrap input::placeholder{color:var(--text-secondary);}

        .search-wrap i{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:var(--primary);font-size:1.1rem;pointer-events:none;}

        .section-header{margin:40px 0 14px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;}

        .section-title{font-size:20px;font-weight:900;letter-spacing:-0.5px;display:flex;align-items:center;gap:8px;}

        .section-title i{color:var(--primary);}

        .section-count{font-size:13px;color:var(--text-secondary);font-weight:600;}

        .channel-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:14px;}

        .channel-card {
    min-height: 48px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:18px 14px;text-decoration:none;display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);box-shadow:var(--shadow);}

        .channel-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-4px);background:var(--surface-hover);}

        .ch-logo-wrap{width:72px;height:72px;background:rgba(255,255,255,0.04);border-radius:50%;display:flex;align-items:center;justify-content:center;padding:12px;border:1px solid var(--border-color);transition:all 0.2s;}

        .channel-card:hover .ch-logo-wrap{border-color:var(--primary);box-shadow:0 0 14px var(--primary-glow);}

        .ch-logo-wrap img{max-width:48px;max-height:48px;object-fit:contain;}

        .ch-name{font-size:13px;font-weight:700;color:var(--text-primary);line-height:1.3;}

        .ch-lang{font-size:11px;color:var(--text-secondary);background:rgba(255,255,255,0.04);padding:3px 8px;border-radius:10px;}

        .ch-type{font-size:10px;color:var(--primary);font-weight:700;text-transform:uppercase;letter-spacing:0.05em;margin-top:auto;}

        .no-results-msg{display:none;text-align:center;padding:52px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);}

        .empty-state{text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);margin:20px 0;}

        .services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;}

        .service-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:18px;display:flex;align-items:center;gap:12px;transition:all 0.2s;text-decoration:none;}

        .service-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-2px);}

        .svc-logo{height:44px;background:var(--bg-card);border-radius:8px;display:flex;align-items:center;justify-content:center;padding:6px 10px;flex-shrink:0;min-width:72px;}

        .svc-logo img{max-height:32px;max-width:60px;object-fit:contain;}

        .svc-name{font-size:14px;font-weight:700;color:var(--text-primary);}

        .svc-price{font-size:12px;color:var(--primary);font-weight:600;}

        .similar-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:12px;}

        .similar-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:16px;display:flex;align-items:center;gap:12px;text-decoration:none;transition:all 0.2s;}

        .similar-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-2px);}

        .sim-flag{font-size:2rem;flex-shrink:0;}.sim-flag .fi{border-radius:3px;}

        .sim-name{font-size:14px;font-weight:700;color:var(--text-primary);}

        .sim-count{font-size:12px;color:var(--text-secondary);margin-top:1px;}

        .guide-module{padding:28px 32px;background:rgba(255,255,255,0.02);border:1px solid var(--border-color);border-radius:20px;transition:all 0.3s;margin-top:0;}

        .guide-module:hover{border-color:var(--primary);}

        .guide-module h2{font-size:19px;font-weight:800;color:var(--text-primary);margin-bottom:12px;display:flex;align-items:center;gap:10px;}

        .guide-module h2 i{color:var(--primary);}

        .guide-module p{font-size:15px;color:var(--text-secondary);line-height:1.8;margin-bottom:10px;max-width:none;}

        .guide-module p:last-child{margin-bottom:0;}

        @media(max-width:768px){.channel-grid{grid-template-columns:repeat(2,1fr);gap:10px;}.country-meta{gap:12px;}.services-grid{grid-template-columns:1fr;}.similar-grid{grid-template-columns:repeat(2,1fr);}}

        @media(max-width:440px){.channel-grid{grid-template-columns:1fr;}.similar-grid{grid-template-columns:1fr;}}
/* Merged Block */
/* Dash Layout */

        .dashboard-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; margin-bottom: 40px; }

        .main-column { display: flex; flex-direction: column; gap: 28px; }

        .sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }

        @media (max-width: 992px) { .dashboard-layout { grid-template-columns: 1fr; } .sidebar { position: relative; top: 0; } }



        a { text-decoration: none; color: inherit; transition: all 0.25s ease; }

        

        @keyframes slideFadeUp {

            0% { opacity: 0; transform: translateY(20px); }

            100% { opacity: 1; transform: translateY(0); }

        }



        .breadcrumb { display: flex; align-items: center; gap: 8px; padding: 24px 0 10px; font-size: 13px; color: var(--text-tertiary); font-weight: 500; flex-wrap: wrap; }

        .breadcrumb a { color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }

        .breadcrumb a:hover { color: var(--primary); }



        /* Premium Hero */

        .provider-hero {

            background: linear-gradient(180deg, rgba(30,41,59,0.3) 0%, rgba(15,23,42,0.4) 100%);

            border: 1px solid var(--border-subtle);

            border-top: 1px solid rgba(255,255,255,0.12);

            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);

            backdrop-filter: blur(20px);

            border-radius: 28px;

            padding: 56px 32px;

            margin: 20px 0 40px;

            text-align: center;

            position: relative;

            overflow: hidden;

        }

        .provider-hero::after {

            content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 300px;

            background: radial-gradient(ellipse at top, rgba(59,130,246,0.15), transparent 60%);

            pointer-events: none; z-index: 0;

        }



        .hero-logo-box {

            position: relative; z-index: 1;

            width: 180px; height: 96px; background: #fff; border-radius: 16px;

            display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;

            padding: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);

            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

        }

        .provider-hero:hover .hero-logo-box { transform: translateY(-4px); }

        .hero-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

        .hero-logo-box i { font-size: 3.5rem; color: var(--primary); }



        .hero-title { position: relative; z-index: 1; font-size: clamp(28px, 5vw, 46px); font-weight: 900; letter-spacing: -1.5px; color: #fff; margin-bottom: 12px; text-shadow: 0 10px 30px rgba(0,0,0,0.6); }

        .hero-sub { position: relative; z-index: 1; font-size: 18px; color: var(--text-secondary); max-width: 720px; margin: 0 auto 32px; font-weight: 500; line-height: 1.6; }



        .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; position: relative; z-index: 1; }

        .badge { padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.5px; text-transform: uppercase; }

        .badge-green { background: rgba(16,185,129,0.1); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }

        .badge-blue { background: rgba(59,130,246,0.1); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }

        .badge-yellow { background: rgba(245,158,11,0.1); color: #fcd34d; border: 1px solid rgba(245,158,11,0.25); }



        /* Actions */

        .btn-primary {

            background: linear-gradient(135deg, #0284c7, #2563eb);

            color: #fff; padding: 16px 32px; border-radius: 16px; font-weight: 700; font-size: 16px;

            display: inline-flex; align-items: center; justify-content: center; gap: 10px;

            box-shadow: 0 12px 24px rgba(37,99,235,0.3); border: 1px solid rgba(255,255,255,0.1);

            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

        }

        .btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(37,99,235,0.5); background: linear-gradient(135deg, #0ea5e9, #3b82f6); }

        .btn-ghost {

            background: rgba(255,255,255,0.03); color: #e2e8f0; padding: 16px 28px; border-radius: 16px;

            font-weight: 600; font-size: 15px; border: 1px solid var(--border-subtle);

            display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s;

        }

        .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }



        /* Stats Row */

        .stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-bottom: 40px; }

        .stat-box {

            background: rgba(255,255,255,0.02); backdrop-filter: blur(12px); border: 1px solid var(--border-subtle);

            border-radius: 20px; padding: 24px; text-align: center; transition: all 0.3s ease; box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);

        }

        .stat-box:hover { transform: translateY(-5px); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }

        .stat-box i { font-size: 26px; color: var(--primary); margin-bottom: 10px; display: block; filter: drop-shadow(0 0 8px rgba(59,130,246,0.3)); }

        .stat-box strong { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 2px; display: block; letter-spacing: -0.5px; }

        .stat-box span { font-size: 11px; font-weight: 800; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 1.5px; }



        /* Content Boxes */

        .content-box {

            background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);

            border: 1px solid var(--border-subtle); border-radius: 24px; padding: 36px; margin-bottom: 28px;

            backdrop-filter: blur(12px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); transition: all 0.3s;

        }

        .content-box:hover { border-color: rgba(255,255,255,0.1); }

        .box-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; letter-spacing: -0.3px; }

        .box-title i { color: var(--primary); font-size: 22px; background: rgba(59,130,246,0.1); padding: 10px; border-radius: 12px; }



        /* Tags */

        .tags { display: flex; wrap: wrap; gap: 10px; flex-wrap: wrap; }

        .tag { background: rgba(255,255,255,0.04); color: #f1f5f9; border: 1px solid rgba(255,255,255,0.1); padding: 10px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; transition: all 0.2s; }

        .tag:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

        .tag-green { background: rgba(16,185,129,0.06); color: #34d399; border-color: rgba(16,185,129,0.2); }

        .tag-green:hover { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.4); color: #6ee7b7; box-shadow: 0 8px 20px rgba(16,185,129,0.15); }



        /* Pricing Cards */

        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

        .pricing-card {

            background: rgba(255,255,255,0.015); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 30px;

            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;

        }

        .pricing-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); opacity: 0; transition: opacity 0.3s; }

        .pricing-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4); background: rgba(255,255,255,0.03); }

        .pricing-card:hover::before { opacity: 1; }

        .pricing-name { font-size: 14px; text-transform: uppercase; font-weight: 800; color: var(--text-tertiary); letter-spacing: 1.5px; margin-bottom: 8px; }

        .pricing-price { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 24px; letter-spacing: -1.5px; }

        .pricing-features { list-style: none; font-size: 15px; color: var(--text-secondary); }

        .pricing-features li { display: flex; align-items: start; gap: 12px; margin-bottom: 14px; font-weight: 500; }

        .pricing-features li i { color: #10b981; font-size: 20px; flex-shrink: 0; margin-top: 1px; }



        /* Tech Info List */

        .info-table { display: flex; flex-direction: column; gap: 12px; }

        .info-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 24px; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }

        .info-row:hover { background: rgba(255,255,255,0.04); }

        .info-label { color: var(--text-secondary); font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 12px; }

        .info-label i { color: var(--primary); font-size: 18px; }

        .info-value { color: #fff; font-size: 15px; font-weight: 700; text-align: right; max-width: 65%; }



        /* Modern Channel Grid */

        .channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; }

        .channel-card {
    min-height: 48px;

            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 18px; padding: 20px 14px;

            display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

            position: relative;

        }

        .channel-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.3); background: rgba(255,255,255,0.04); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

        .ch-logo { width: 64px; height: 64px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.15); border: 2px solid rgba(255,255,255,0.1); }

        .ch-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

        .ch-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }

        .ch-name a { color: inherit; }

        .ch-name a::before { content:""; position:absolute; top:0; left:0; right:0; bottom:0; z-index:1; } /* Expanded click area */



        /* Similar Services */

        .similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }

        .similar-card { background: rgba(255,255,255,0.02); backdrop-filter: blur(12px); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 16px; text-decoration: none; transition: all 0.3s; }

        .similar-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); background: rgba(255,255,255,0.04); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

        .sim-icon { font-size: 1.8rem; color: var(--primary); flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(59,130,246,0.4)); }

        .sim-name { font-size: 15px; font-weight: 700; color: #fff; }



        /* SEO / FAQ */

        .faq-item { border-bottom: 1px solid var(--border-subtle); padding: 24px 0; }

        .faq-item:last-child { border-bottom: none; border-radius: 0 0 24px 24px; }

        .faq-q { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; }

        .faq-q i { color: var(--primary); flex-shrink: 0; margin-top: 3px; font-size: 20px; filter: drop-shadow(0 0 5px rgba(59,130,246,0.3)); }

        .faq-a { font-size: 16px; color: var(--text-secondary); line-height: 1.8; padding-left: 32px; font-weight: 500; }



        @media(max-width: 768px) {

            .provider-hero { padding: 40px 20px; }

            .stats-row { grid-template-columns: repeat(2, 1fr); }

            .info-row { flex-direction: column; gap: 8px; }

            .info-value { text-align: left; }

        }



.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 32px; }

            .coverage-box { background: linear-gradient(145deg, rgba(30,41,59,0.3) 0%, rgba(15,23,42,0.6) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05); }

            .coverage-hdr { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 16px; }

            .coverage-hdr i { font-size: 24px; padding: 10px; border-radius: 12px; }

            .coverage-hdr h4 { font-size: 18px; font-weight: 800; color: #fff; margin: 0; letter-spacing:-0.3px; }

            .pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }

            .pro-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(15,23,42,0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; font-size: 14px; font-weight: 600; color: #cbd5e1; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

            .pro-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.3); color: #fff; }

            

            /* Sport Specific */

            .sport-pill-item:hover { border-color: #3b82f6; background: rgba(59,130,246,0.15); box-shadow: 0 8px 20px rgba(59,130,246,0.2); }

            .sport-pill-item i { color: #60a5fa; font-size: 16px; }

            

            /* League Specific */

            .league-pill-item { background: rgba(16,185,129,0.05); border-color: rgba(16,185,129,0.15); color: #34d399; }

            .league-pill-item:hover { border-color: #10b981; background: rgba(16,185,129,0.2); color: #fff; box-shadow: 0 8px 20px rgba(16,185,129,0.2); }

            .league-pill-item i { color: #34d399; font-size: 16px; }

            

            /* Unlinked Specific */

            .unlinked-pill { cursor: default; }

            .unlinked-pill:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.2); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
/* Merged Block */
a{text-decoration:none;color:inherit;transition:all 0.2s;}

        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}

        .breadcrumb a{color:var(--text-secondary);display:flex;align-items:center;gap:4px;}

        .breadcrumb a:hover{color:var(--primary);}

        .hero{padding:64px 0 44px;text-align:center;position:relative;overflow:hidden;}

        .hero::before{content:'';position:absolute;top:-80px;left:50%;transform:translateX(-50%);width:600px;height:300px;background:radial-gradient(circle,rgba(59,130,246,0.1) 0%,transparent 70%);pointer-events:none;}

        .hero h1{font-size:clamp(26px,5vw,50px);font-weight:900;letter-spacing:-0.04em;margin-bottom:16px;line-height:1.1;color:#f8fafc;}

        .hero p{color:var(--text-secondary);max-width:680px;margin:0 auto 28px;font-size:17px;line-height:1.7;font-weight:500;}

        .hero-stats{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}

        .stat-pill{display:inline-flex;align-items:center;gap:8px;padding:9px 18px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:12px;font-size:14px;font-weight:700;color:var(--text-secondary);box-shadow:var(--shadow);}

        .stat-pill strong{color:var(--text-primary);font-size:16px;}.stat-pill i{color:var(--primary);}

        .section-header{margin:44px 0 14px;display:flex;justify-content:space-between;align-items:center;}

        .section-title{font-size:22px;font-weight:900;letter-spacing:-0.8px;display:flex;align-items:center;gap:10px;}

        .section-title i{color:var(--primary);}

        .filter-bar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:14px 20px;margin-bottom:22px;box-shadow:var(--shadow);}

        .filter-label{color:var(--text-secondary);font-size:13px;font-weight:700;display:flex;align-items:center;gap:6px;white-space:nowrap;text-transform:uppercase;letter-spacing:0.05em;}

        .filter-label i{color:var(--primary);}

        .filter-select{flex:1;min-width:220px;background:var(--bg-card);color:var(--text-primary);border:1px solid var(--border-color);border-radius:10px;padding:10px 14px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;outline:none;transition:border-color 0.2s;-webkit-appearance:none;appearance:none;min-height:48px;}

        .filter-select:hover,.filter-select:focus{border-color:var(--primary);}

        .filter-select option{background:#1a1d26;}

        .cards-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px;}

        .country-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:16px;padding:22px;text-decoration:none;display:flex;flex-direction:column;gap:12px;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);box-shadow:var(--shadow);}

        .country-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-4px);background:var(--surface-hover);}

        .card-top{display:flex;align-items:center;gap:14px;}

        .card-flag{font-size:2.2rem;line-height:1;flex-shrink:0;}

        .card-flag .fi{border-radius:4px;box-shadow:0 2px 6px rgba(0,0,0,0.3);}

        .card-flag i{font-size:2rem;color:var(--primary);}

        .card-name{font-size:16px;font-weight:800;color:var(--text-primary);line-height:1.3;}

        .card-count{font-size:13px;color:var(--text-secondary);margin-top:3px;display:flex;align-items:center;gap:4px;}

        .card-count i{color:var(--primary);font-size:12px;}

        .card-footer{padding-top:12px;display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--border-color);}

        .card-cta{font-size:13px;font-weight:700;color:var(--primary);display:flex;align-items:center;gap:5px;transition:gap 0.2s;}

        .country-card:hover .card-cta{gap:9px;}

        .no-results{display:none;text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);}

        .trust-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:14px;margin:50px 0 34px;}

        .trust-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:22px 16px;text-align:center;transition:all 0.2s;}

        .trust-card:hover{transform:translateY(-2px);border-color:rgba(59,130,246,0.3);}

        .trust-card i{font-size:26px;color:var(--primary);margin-bottom:8px;display:block;}

        .trust-card strong{font-size:22px;font-weight:900;color:var(--text-primary);display:block;margin-bottom:4px;letter-spacing:-0.5px;}

        .trust-card span{font-size:12px;font-weight:600;color:var(--text-secondary);text-transform:uppercase;letter-spacing:0.05em;}

        .guide-module{padding:32px;background:rgba(255,255,255,0.02);border:1px solid var(--border-color);border-radius:20px;transition:all 0.3s;}

        .guide-module:hover{background:rgba(255,255,255,0.03);border-color:var(--primary);}

        .guide-module h2{font-size:20px;font-weight:800;color:var(--text-primary);margin-bottom:14px;display:flex;align-items:center;gap:10px;letter-spacing:-0.3px;}

        .guide-module h2 i{color:var(--primary);}

        .guide-module p{font-size:15px;color:var(--text-secondary);line-height:1.8;font-weight:500;margin-bottom:10px;max-width:none;}

        .guide-module p:last-child{margin-bottom:0;}

        @media(max-width:768px){.cards-grid{grid-template-columns:repeat(2,1fr);gap:10px;}.trust-strip{grid-template-columns:repeat(2,1fr);}.filter-bar{flex-direction:column;align-items:stretch;}.filter-select{min-width:0;width:100%;}}

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



/* Premium Hero UX additions */

        .hero-ux { padding: 80px 0 60px; text-align: center; position: relative; z-index: 1; }

        .hero-ux::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%); pointer-events: none; z-index: -1; }

        .hero-ux h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.1; color: #f8fafc; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }

        .hero-ux p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; font-size: 18px; line-height: 1.6; }

        .omnibox-wrapper { max-width: 680px; margin: 0 auto; position: relative; }

        .omnibox { display: flex; align-items: center; background: rgba(18, 20, 28, 0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(10px); }

        .omnibox:focus-within { border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow), 0 20px 40px rgba(0,0,0,0.5); transform: scale(1.02); }

        .omnibox i { font-size: 24px; color: var(--text-secondary); margin: 0 16px; }

        .omnibox input { flex: 1; background: transparent; border: none; color: var(--text-primary); font-size: 18px; font-weight: 500; padding: 16px 0; outline: none; }

        .omnibox button { background: var(--primary); color: #fff; border: none; border-radius: 14px; padding: 0 28px; height: 52px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; }

        .section-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; }

        .network-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; margin-bottom: 80px; }

        .network-card { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: all 0.3s; position: relative; overflow: hidden; text-decoration:none; }

        .network-card::before { content:''; position:absolute; top:0;left:0;right:0;height:4px; background: var(--border-color); transition: background 0.3s; }

        .network-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-5px); background: var(--surface-hover); }

        .network-card:hover::before { background: #22c55e; }

        .net-logo { width: 64px; height: 64px; border-radius: 12px; background: #fff; padding: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.2); position: relative; aspect-ratio: 1/1; }

        .net-logo img { max-width: 100%; max-height: 100%; object-fit: contain; background: #fff; }

        .net-name { font-size: 14px; font-weight: 700; color: var(--text-primary); width: 100%; line-height: 1.3; }

        .net-country { font-size: 11px; color: #22c55e; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

        @media(max-width:768px){ .omnibox{flex-direction:column;padding:12px;} .omnibox input{width:100%;padding:12px;text-align:center;} .omnibox button{width:100%;justify-content:center;} .network-wall{grid-template-columns:repeat(2,1fr);} }
/* Merged Block */
/* Global Base */
    body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .1) 0%, transparent 45%), radial-gradient(circle at 88% 78%, rgba(67, 56, 202, .1) 0%, transparent 45%); pointer-events: none; z-index: -1; }

    /* Modern Shared Components */
    .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px;  background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow); position: relative; }
    .event-card:hover { border-color: rgba(59, 130, 246, 0.3); transform: translateY(-4px); background-color: var(--surface-hover); }

    /* Versus Specific Layout */
    .vs-hero {
        background: linear-gradient(to right, var(--surface-2), var(--surface-1));
        padding: 4rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }
    .vs-logos-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .vs-logo-box {
        background: var(--surface-3);
        padding: 1.5rem;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .vs-logo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .vs-badge {
        background: var(--primary-color);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 700;
        font-size: 1.1rem;
    }
    .vs-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    .vs-subtitle {
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        line-height: 1.6;
    }
    
    .compare-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 24px 20px;
    }

    .compare-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    @media (min-width: 768px) {
        .compare-grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
    }
    
    .compare-grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    @media (min-width: 768px) {
        .compare-grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
    }

    .table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 2rem;
        padding-bottom: 0.5rem;
    }
    
    .vs-table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
        margin-bottom: 1rem;
    }
    .vs-table th, .vs-table td {
        padding: 1.25rem 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: var(--text-primary);
        vertical-align: top;
    }
    .vs-table th {
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.85rem;
        color: var(--text-secondary);
        width: 30%;
    }
    .vs-table tr:hover td, .vs-table tr:hover th {
        background: rgba(255,255,255,0.02);
    }
    .vs-table td:nth-child(2) {
        border-right: 1px solid rgba(255,255,255,0.06);
        border-left: 1px solid rgba(255,255,255,0.06);
        background: rgba(0,0,0,0.2);
    }
    .vs-table td:nth-child(3) {
        background: #0b0d12;
    }
    
    .channel-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    .channel-pill {
        background: var(--surface-3);
        color: var(--text-secondary);
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
        font-size: 0.85rem;
        border: 1px solid var(--border-color);
    }
    
    .exclusive-pill {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary-color);
        border-color: rgba(59, 130, 246, 0.3);
    }
    
    .cta-vpn-banner {
        background: rgba(37, 99, 235, 0.05); /* Subtle Blue */
        border: 1px solid rgba(59, 130, 246, 0.2);
        padding: 1.25rem 2rem;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-vpn-banner h3 {
        color: #f8fafc;
        margin: 0 0 0.5rem 0;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .cta-vpn-banner p {
        color: var(--text-secondary);
        margin: 0 auto 1.2rem;
        max-width: 700px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #2563eb;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s ease;
        font-size: 0.9rem;
    }
    .cta-button:hover {
        background: #3b82f6;
        transform: translateY(-2px);
    }
    
    .pricing-card {
        background: var(--surface-3);
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
    }
    .pricing-card h4 { margin-top: 0; color: var(--text-primary); font-size: 1.1rem; }
    .pricing-card .price { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); margin: 0.5rem 0; }
    .pricing-card ul { margin: 0; padding-left: 1.5rem; color: var(--text-secondary); font-size: 0.9rem; }
/* Merged Block */
a{text-decoration:none;color:inherit;transition:all 0.2s;}

        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}

        /* Hero UX */

        .hero-ux { padding: 80px 0 60px; text-align: center; position: relative; z-index: 1; }

        .hero-ux::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%); pointer-events: none; z-index: -1; }

        .hero-flag{font-size:3.5rem;margin-bottom:14px;line-height:1;}

        .hero-flag .fi{border-radius:6px;box-shadow:0 4px 15px rgba(0,0,0,0.4);}

        .hero-ux h1 { font-size: clamp(32px, 5.5vw, 56px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.1; color: #f8fafc; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }

        .hero-ux p { color: var(--text-secondary); max-width: 680px; margin: 0 auto 30px; font-size: 18px; line-height: 1.6; }

        

        /* Stats & Trust */

        .hero-stats{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:24px;}

        .stat-pill{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;background:rgba(18,20,28,0.8);border:1px solid rgba(255,255,255,0.06);border-radius:12px;font-size:13px;font-weight:700;color:var(--text-secondary);backdrop-filter:blur(10px);}

        .stat-pill strong{color:var(--text-primary);}.stat-pill i{color:var(--primary);}

        .trust-bar{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;padding:14px 0;margin-bottom:28px;border-bottom:1px solid var(--border-color);}

        .trust-item{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--text-secondary);}

        .trust-item i{color:#22c55e;}

        

        /* Omnibox */

        .omnibox-wrapper { max-width: 680px; margin: 0 auto; position: relative; }

        .omnibox { display: flex; align-items: center; background: rgba(18, 20, 28, 0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 6px; box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(10px); margin-top:20px; }

        .omnibox:focus-within { border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow), 0 20px 40px rgba(0,0,0,0.5); transform: scale(1.02); }

        .omnibox i { font-size: 22px; color: var(--text-secondary); margin: 0 16px; }

        .omnibox input { flex: 1; background: transparent; border: none; color: var(--text-primary); font-size: 16px; font-weight: 500; padding: 14px 0; outline: none; }

        /* Provider grid */

        .provider-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:16px;}

        .provider-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:16px;padding:22px;text-decoration:none;display:flex;flex-direction:column;gap:12px;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);box-shadow:var(--shadow);position:relative;overflow:hidden;}

        .provider-card:hover{border-color:rgba(59,130,246,0.3);transform:translateY(-4px);background:var(--surface-hover);}

        .provider-logo{width:100%;height:72px;background:#fff;border-radius:12px;display:flex;align-items:center;justify-content:center;padding:10px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.15);}

        .provider-logo img{max-width:130px;max-height:52px;width:auto;height:auto;object-fit:contain;}

        .provider-logo i{font-size:2.2rem;color:var(--primary);}

        .free-badge{position:absolute;top:14px;right:14px;background:#059669;color:#fff;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;}

        .provider-name{font-size:16px;font-weight:800;color:var(--text-primary);line-height:1.3;}

        .provider-price{font-size:15px;font-weight:700;color:var(--primary);}

        .provider-meta{display:flex;gap:8px;flex-wrap:wrap;}

        .meta-chip{background:rgba(37,99,235,0.08);border:1px solid rgba(37,99,235,0.15);color:var(--text-secondary);padding:4px 10px;border-radius:20px;font-size:12px;display:flex;align-items:center;gap:4px;}

        .meta-chip i{color:var(--primary);font-size:11px;}

        .provider-cta{margin-top:auto;padding-top:12px;border-top:1px solid var(--border-color);display:flex;align-items:center;justify-content:space-between;}

        .cta-link{color:var(--primary);font-size:13px;font-weight:700;display:flex;align-items:center;gap:4px;transition:gap 0.2s;}

        .provider-card:hover .cta-link{gap:8px;}

        /* No results */

        .no-results-msg{display:none;text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);margin-top:20px;}

        .no-service{text-align:center;padding:60px 20px;background:var(--surface-color);border-radius:16px;border:1px solid var(--border-color);}

        /* Trust strip */

        .trust-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px;margin:44px 0 32px;}

        .trust-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:14px;padding:20px 14px;text-align:center;transition:all 0.2s;}

        .trust-card:hover{transform:translateY(-2px);border-color:rgba(59,130,246,0.3);}

        .trust-card i{font-size:24px;color:var(--primary);margin-bottom:6px;display:block;}

        .trust-card strong{font-size:19px;font-weight:900;color:var(--text-primary);display:block;margin-bottom:3px;}

        .trust-card span{font-size:11px;font-weight:600;color:var(--text-secondary);text-transform:uppercase;letter-spacing:0.05em;}

        /* SEO */

        .guide-module{padding:28px 32px;background:rgba(255,255,255,0.02);border:1px solid var(--border-color);border-radius:20px;transition:all 0.3s;}

        .guide-module:hover{border-color:var(--primary);}

        .guide-module h2{font-size:19px;font-weight:800;color:var(--text-primary);margin-bottom:12px;display:flex;align-items:center;gap:10px;}

        .guide-module h2 i{color:var(--primary);}

        .guide-module p{font-size:15px;color:var(--text-secondary);line-height:1.8;margin-bottom:10px;max-width:none;}

        .guide-module p:last-child{margin-bottom:0;}

        /* Back nav */

        .back-nav{display:flex;align-items:center;gap:10px;margin-top:28px;flex-wrap:wrap;}

        .back-link{display:inline-flex;align-items:center;gap:6px;color:var(--primary);font-size:14px;font-weight:700;padding:8px 16px;background:rgba(37,99,235,0.08);border:1px solid rgba(37,99,235,0.2);border-radius:10px;transition:all 0.2s;}

        .back-link:hover{background:rgba(37,99,235,0.15);}

        @media(max-width:768px){.provider-grid{grid-template-columns:repeat(2,1fr);gap:10px;}.trust-strip{grid-template-columns:repeat(2,1fr);}.trust-bar{gap:12px;}}

        @media(max-width:440px){.provider-grid{grid-template-columns:1fr;}}
/* Merged Block */
.search-hero {
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 40px;
        }

        .search-hero h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

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

        /* The exact same search form block style so it unifies with our header replacements */
        .search-container-large {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input-large {
            width: 100%;
            padding: 18px 24px 18px 56px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            transition: 0.2s;
            outline: none;
        }

        .search-input-large:focus {
            border-color: var(--primary);
            background: rgba(37, 99, 235, 0.05);
        }

        .search-btn-large {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-head {
            font-size: 22px;
            font-weight: 800;
            margin: 40px 0 24px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .empty-state {
            padding: 40px;
            text-align: center;
            border: 1px dashed var(--border-color);
            border-radius: 12px;
            color: var(--text-secondary);
            margin-top: 40px;
            background: rgba(255, 255, 255, 0.01);
        }

        .empty-state i {
            font-size: 48px;
            margin-bottom: 16px;
            color: var(--border-color);
            display: block;
        }

        /* Reused card styles from index.php! */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 20px;
        }

        .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px; 
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow);
        }

        .event-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            padding-bottom: 12px;
        }

        .event-

        .competitor {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .team-logo, .team-logo-placeholder { 
            width: 32px !important; 
            height: 32px !important; 
            min-width: 32px !important; 
            max-width: 32px !important; 
            flex: 0 0 32px !important; 
            border-radius: 8px; 
            border: 1px solid var(--border-color); 
            box-sizing: border-box !important; 
            margin: 0 !important; 
        }
        .team-logo { 
            object-fit: contain; 
            background: rgba(255,255,255,0.03); 
            padding: 4px; 
        }
        .team-logo-placeholder { 
            background: #1e2230; 
            display: flex !important; 
            align-items: center; 
            justify-content: center; 
            font-size: 11px; 
            font-weight: 800; 
            color: var(--text-secondary); 
            padding: 0; 
        }
        .team-logo-placeholder[style*="display: none"], .team-logo-placeholder[style*="display:none"] { 
            display: none !important; 
        }

        .event-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px dashed rgba(255, 255, 255, 0.06);
            margin-top: auto;
        }

        .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

        .btn-view:hover {
            background: var(--primary);
            color: #fff;
        }

        .channel-card {
    min-height: 48px;
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 16px;
            transition: all 0.2s;
            text-decoration: none;
            cursor: pointer;
        }

        .channel-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .channel-logo {
            width: 48px;
            height: 48px;
            object-fit: contain;
            background: #fff;
            border-radius: 8px;
            padding: 4px;
        }

        .channel-info h3 {
            font-size: 16px;
            color: var(--text-primary);
            margin: 0 0 4px 0;
        }

        @font-face {
            font-family: 'Phosphor';
            src: url('/fonts/Phosphor.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Phosphor-Fill';
            src: url('/fonts/Phosphor-Fill.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        [class^="ph-"],
        [class*=" ph-"] {
            font-family: 'Phosphor' !important;
            font-style: normal;
            font-weight: normal;
        }

        [class^="ph-fill"],
        [class*=" ph-fill"] {
            font-family: 'Phosphor-Fill' !important;
        }
/* Merged Block */
a{text-decoration:none;color:inherit;transition:all 0.2s;}

        

        /* Premium Hero Area */

        .hero-ux {

            padding: 80px 0 60px;

            text-align: center;

            position: relative;

            z-index: 1;

        }

        .hero-ux::before {

            content: '';

            position: absolute;

            top: -100px;

            left: 50%;

            transform: translateX(-50%);

            width: 800px;

            height: 400px;

            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);

            pointer-events: none;

            z-index: -1;

        }

        .hero-ux h1 {

            font-size: clamp(32px, 6vw, 56px);

            font-weight: 900;

            letter-spacing: -0.04em;

            margin-bottom: 20px;

            line-height: 1.1;

            color: #f8fafc;

        }

        .hero-ux p {

            color: var(--text-secondary);

            max-width: 600px;

            margin: 0 auto 40px;

            font-size: 18px;

            line-height: 1.6;

        }



        /* Omnibox Search UX */

        .omnibox-wrapper {

            max-width: 680px;

            margin: 0 auto;

            position: relative;

            z-index: 5;

        }

        .omnibox {

            display: flex;

            align-items: center;

            background: rgba(18, 20, 28, 0.8);

            border: 1px solid rgba(255,255,255,0.1);

            border-radius: 20px;

            padding: 8px;

            box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);

            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

            backdrop-filter: blur(10px);

        }

        .omnibox:focus-within {

            border-color: var(--primary);

            box-shadow: 0 0 30px var(--primary-glow), 0 20px 40px rgba(0,0,0,0.5);

            transform: scale(1.02);

            z-index: 100;

        }

        .omnibox i {

            font-size: 24px;

            color: var(--text-secondary);

            margin: 0 16px;

        }

        .omnibox:focus-within i {

            color: var(--primary);

        }

        .omnibox input {

            flex: 1;

            min-width: 0;

            background: transparent;

            border: none;

            color: var(--text-primary);

            font-size: 18px;

            font-weight: 500;

            padding: 16px 10px;

            outline: none;

            text-overflow: ellipsis;

        }

        .omnibox input::placeholder {

            color: var(--text-secondary);

        }

        .omnibox button {

            background: var(--primary);

            color: #fff;

            border: none;

            border-radius: 14px;

            padding: 0 28px;

            height: 52px;

            font-size: 16px;

            font-weight: 700;

            cursor: pointer;

            transition: all 0.2s;

            display: flex;

            align-items: center;

            gap: 8px;

        }

        .omnibox button:hover {

            background: #1d4ed8;

            transform: translateY(-2px);

            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);

        }



        /* UX Network Wall */

        .section-tag {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 6px 16px;

            background: rgba(255,255,255,0.03);

            border: 1px solid rgba(255,255,255,0.05);

            border-radius: 30px;

            font-size: 13px;

            font-weight: 700;

            color: var(--text-secondary);

            margin-bottom: 24px;

            text-transform: uppercase;

            letter-spacing: 0.05em;

        }

        .section-tag i { color: var(--primary); font-size: 16px; }

        

        .network-wall {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));

            gap: 16px;

            margin-bottom: 80px;

        }

        .network-card {

            background: var(--surface-color);

            border: 1px solid var(--border-color);

            border-radius: 16px;

            padding: 20px;

            text-align: center;

            display: flex;

            flex-direction: column;

            align-items: center;

            gap: 12px;

            transition: all 0.3s;

            position: relative;

            overflow: hidden;

            text-decoration: none;

        }

        .network-card::before {

            content:'';

            position:absolute;

            top:0;left:0;right:0;height:4px;

            background: var(--border-color);

            transition: background 0.3s;

        }

        .network-card:hover {

            border-color: rgba(255,255,255,0.1);

            transform: translateY(-5px);

            background: var(--surface-hover);

        }

        .network-card:hover::before {

            background: var(--primary);

        }

        .net-logo {

            width: 64px;

            height: 64px;

            border-radius: 50%;

            background: var(--bg-card);

            border: 1px solid var(--border-color);

            padding: 8px;

            display: flex;

            align-items: center;

            justify-content: center;

            box-shadow: 0 4px 10px rgba(0,0,0,0.2);

            position: relative;

            aspect-ratio: 1;

        }

        .pulse-dot {

            position: absolute;

            top: -2px;

            right: -2px;

            width: 12px;

            height: 12px;

            background: #ef4444;

            border: 2px solid var(--surface-color);

            border-radius: 50%;

            box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);

        }

        

        .net-logo img {

            max-width: 100%;

            max-height: 100%;

            object-fit: contain;

        }

        .net-name {

            font-size: 14px;

            font-weight: 700;

            color: var(--text-primary);

            width: 100%;

            line-height: 1.3;

        }

        .net-country {

            font-size: 11px;

            color: var(--text-secondary);

            font-weight: 600;

            text-transform: uppercase;

            letter-spacing: 0.05em;

        }



        /* SEO Architecture Row */

        .seo-divider {

            display: flex;

            align-items: center;

            text-align: center;

            margin: 60px 0 40px;

        }

        .seo-divider::before, .seo-divider::after {

            content: '';

            flex: 1;

            border-bottom: 1px solid var(--border-color);

        }

        .seo-divider span {

            padding: 0 20px;

            font-size: 12px;

            font-weight: 700;

            color: var(--text-secondary);

            text-transform: uppercase;

            letter-spacing: 0.1em;

        }



        /* SEO Country Flex Map */

        .region-map {

            display: flex;

            flex-direction: column;

            gap: 40px;

        }

        .region-block {

            background: rgba(255,255,255,0.01);

            border: 1px solid var(--border-color);

            border-radius: 24px;

            padding: 30px;

        }

        .region-title {

            font-size: 24px;

            font-weight: 900;

            color: var(--text-primary);

            margin-bottom: 20px;

            display: flex;

            align-items: center;

            gap: 12px;

        }

        .region-title span {

            font-size: 13px;

            padding: 4px 12px;

            background: #1e2230;

            border-radius: 20px;

            color: var(--text-secondary);

            font-weight: 600;

        }

        

        /* Sleek compact pills for Google/Index crawl */

        .country-pills {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

            gap: 12px;

        }

        .country-pill {

            display: flex;

            align-items: center;

            justify-content: space-between;

            padding: 12px 16px;

            background: var(--surface-color);

            border: 1px solid rgba(255,255,255,0.03);

            border-radius: 12px;

            transition: all 0.2s;

        }

        .country-pill:hover {

            background: var(--surface-hover);

            border-color: rgba(255,255,255,0.1);

            transform: translateX(4px);

        }

        .cp-left {

            display: flex;

            align-items: center;

            gap: 12px;

        }

        .cp-left .fi {

            font-size: 1.5rem;

            border-radius: 4px;

            box-shadow: 0 2px 4px rgba(0,0,0,0.5);

        }

        .cp-left i {

            font-size: 1.5rem;

            color: var(--text-secondary);

        }

        .cp-name {

            font-size: 14px;

            font-weight: 700;

            color: var(--text-primary);

        }

        .cp-count {

            font-size: 12px;

            font-weight: 600;

            color: #60a5fa;

            background: rgba(37,99,235,0.1);

            padding: 2px 8px;

            border-radius: 10px;

        }



        @media(max-width:768px){

            .hero-ux h1 { font-size: 32px; }

            .omnibox { flex-direction: column; padding: 12px; border-radius: 24px; }

            .omnibox input { width: 100%; padding: 12px; text-align: center; }

            .omnibox button { width: 100%; justify-content: center; }

            .network-wall { grid-template-columns: repeat(2, 1fr); }

            .region-block { padding: 20px; }

            .country-pills { grid-template-columns: 1fr; }

        }

        

        .breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}

        .breadcrumb a{color:var(--text-secondary);display:flex;align-items:center;gap:4px;}.breadcrumb a:hover{color:var(--primary);}


/* ========================================================= */
/* FIX: Official Broadcast Button Visibility on Mobile & TV Dropdown Overlay */
/* ========================================================= */

/* TV Dropdown Overlay Fix (Global) */
.event-footer {
    position: relative !important;
}
.channel-details-dropdown {
    position: static !important;
}
.channel-details-dropdown > div {
    position: absolute !important;
    bottom: calc(100% + 5px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    background: #0f1117 !important; 
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 12px !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.9) !important;
    margin-top: 0 !important;
}


/* Official Broadcast Button Visibility Fix (Mobile List View) */
@media (max-width: 768px) {
    .events-grid.list-view .event-footer > div:last-child {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        margin-top: 8px !important;
    }
    .events-grid.list-view .event-footer .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
}


/* OVERRIDE TO RESTORE NAV ARROW CIRCLE SHAPE */
.nav-arrow { height: 36px !important; width: 36px !important; border-radius: 50% !important; aspect-ratio: 1/1 !important; flex-shrink: 0 !important; padding: 0 !important; }



/* ========================================================= */
/* FIX: Event Footer Flexibility */
/* ========================================================= */

.events-grid.list-view .event-footer {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

.events-grid.list-view .tv-network {
    flex: 1 1 auto !important;
    width: auto !important;
}

.events-grid.list-view .event-footer > div:last-child {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: auto !important;
}

.events-grid.list-view .event-footer .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-height: 48px;
    background: #2563eb !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.events-grid.list-view .event-footer .btn-cal {
    padding: 8px 10px !important;
    flex: 0 0 auto !important;
}

@media (max-width: 800px) {
    .events-grid.list-view .event-footer {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .events-grid.list-view .event-footer > div:last-child {
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
}


/* Correct Team Logo Bump (+20%) */
.events-grid.list-view .team-logo-placeholder, .events-grid.list-view .competitor img { height: 44px !important; width: 44px !important; }
.events-grid.grid-view .team-logo-player { height: 72px !important; width: 72px !important; }
.events-grid.list-view .event-card { content-visibility: auto; contain-intrinsic-size: 0 250px;  overflow: visible !important; border-radius: 12px; }

/* Guarantee Red Live Dot */
.live-dot { background: #ef4444 !important; filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.8)) !important; }

/* Fix any image cutting */
.team-logo-placeholder, .competitor img { object-fit: contain !important; }


/* PREVENT BORDER RADIUS CLIPPING SQUARES */
.team-logo-placeholder, .competitor img {
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}


/* FIX Z-INDEX FOR TOOLS DROPDOWN */
.top-bar { position: relative !important; z-index: 999999 !important; }
.header-dropdown { z-index: 999999 !important; }
.header-dropdown-menu { z-index: 9999999 !important; }
.nav-container { position: relative !important; z-index: 10 !important; }

/* FIX EXACT CONTAINER CUTTING IMAGE */
/* removed bad competitor visible */
.events-grid.list-view /* removed bad competitor visible */
.card-logo-wrap { overflow: visible !important; }


/* FIX FOR CUT SQUISHED IMAGES IN MOBILE GRID */
.events-grid.list-view .competitor-home { grid-template-columns: 1fr 44px !important; }
.events-grid.list-view .competitor-away { grid-template-columns: 44px 1fr !important; }
.events-grid.list-view .competitor-home img,
.events-grid.list-view .competitor-away img,
.events-grid.list-view .competitor-home .team-logo-placeholder,
.events-grid.list-view .competitor-away .team-logo-placeholder {
    height: 44px !important;
    width: 44px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}


/* ========================================================= */
/* FIX: STOP LEAGUE NAME TRUNCATION */
/* ========================================================= */
.event-header {
    white-space: normal !important;
    overflow: visible !important;
}
.event-league {
    white-space: normal !important;
    text-overflow: clip !important;
    overflow: visible !important;
    display: inline-block !important; /* Allow natural wrapping */
    word-break: break-word !important;
}


/* ========================================================= */
/* FIX: PREVENT SQUASH ON HOME ICON & FIXED ABSOLUTE DROPDOWN */
/* ========================================================= */

/* Prevent flexbox from squishing the logos */
.team-logo-placeholder, .competitor img {
    flex-shrink: 0 !important;
}

/* Make TV dropdown absolute so it doesn't break the single-line layout and squish everything */
.channel-details-dropdown {
    position: relative !important;
}
.channel-details-dropdown > div {
    position: absolute !important;
    bottom: 100% !important; /* Flies upwards over the card */
    left: 0 !important;
    z-index: 999999 !important;
    min-width: 250px !important;
    max-width: 85vw !important;
    margin: 0 0 8px 0 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8) !important;
    white-space: normal !important;
    background: #12141c !important; /* Solid dark background */
}

/* PROPER TEAM NAME BOUNDING TO PREVENT GRID BLOWOUT */
.competitor { overflow: hidden !important; }
.competitor-info { overflow: hidden !important; width: 100% !important; min-width: 0 !important; }
.competitor-info .team-name { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; max-width: 100% !important; display: block !important; }
.competitor img { overflow: clip !important; }

/* FORCE HEADER TO ALLOW DROPDOWNS ON MOBILE */
header, .top-bar { overflow: visible !important; }

/* FIX HIDDEN EVENTS THAT WERE LEAKING */
.events-grid .hidden.extra-feat { display: none !important; }


/* ========================================================= */
/* RESTORE INLINE .SVC-CARD AND .LEAGUE-CARD LAYOUTS DESTROYED BY HEADER PURGE */
/* ========================================================= */
.leagues-grid .league-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    background: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    aspect-ratio: auto !important; /* overrides previous 16/9 broken layout */
    box-shadow: none !important;
    transition: all 0.2s !important;
    height: auto !important;
}
.leagues-grid .league-card:hover { border-color: rgba(255,255,255,0.1) !important; transform: translateY(-2px) !important; }
.league-title-t { font-size: 14px; font-weight: 700; color: var(--text-primary); }

.svc-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s;
}
.svc-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-2px); }
.svc-logo-box {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(255,255,255,0.03); display: flex;
    align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
}
.svc-logo-box img { width: 36px; height: 36px; object-fit: contain; }


/* ========================================================= */
/* PERFECTLY FORCE DROPDOWN TO BE A BEAUTIFUL FLEX ROW LIST  */
/* ========================================================= */
.channel-details-dropdown > div {
    position: absolute !important;
    bottom: calc(100% + 5px) !important;
    left: 0 !important;
    z-index: 9999999 !important;
    min-width: 260px !important;
    max-width: 90vw !important;
    background: #11141c !important; 
    border: 1px solid var(--primary) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important; /* The vertical list wrapper */
    gap: 8px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9) !important;
}

.channel-details-dropdown > div > div {
    display: flex !important;
    flex-direction: row !important; /* FORCE Row alignment for icon + text */
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.channel-details-dropdown > div > div img {
    height: 24px !important;
    width: 40px !important;
    min-width: 40px !important;
    object-fit: contain !important;
    background: transparent !important;
    border-radius: 4px !important;
    display: block !important;
    flex-shrink: 0 !important; /* NEVER SQUISH ICON */
}

.channel-details-dropdown > div > div span,
.channel-details-dropdown > div > div text-node {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-align: left !important;
    white-space: nowrap !important; /* Force single line logic */
    overflow: hidden !important;
    text-overflow: ellipsis !important; /* Ellipse if too long */
    flex: 1 !important;
    display: block !important;
}

/* ========================================================= */
/* FIX FEATURED LIST CUTTING EVENTS & DROPDOWN LOGO ALIGNING */
/* ========================================================= */
.events-grid.list-view .event-card.hidden,
.events-grid .event-card.hidden,
.hidden.extra-feat {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden !important;
}

.channel-details-dropdown > div > div > img,
.channel-details-dropdown > div > div > div.ph-television,
.channel-details-dropdown > div > div > div[style*="height:24px"] {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 24px !important;
    object-fit: contain !important;
    flex: 0 0 40px !important;
    margin: 0 !important;
    padding: 2px !important;
    box-sizing: border-box !important;
    display: block !important;
}

.channel-details-dropdown > div > div {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* ========================================================= */
/* FIX FLAG EMULATION ON DESKTOP & LEFT-ALIGN BREADCRUMBS    */
/* ========================================================= */
.breadcrumb {
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ========================================================= */
/* GEO-BLOCKED STREAMING CARD STYLES                         */
/* ========================================================= */
.streaming-service-card.svc-dim {
    opacity: 0.6 !important;
    filter: grayscale(80%) !important;
    position: relative;
    border-color: rgba(239, 68, 68, 0.3) !important;
}
.streaming-service-card.svc-dim::after {
    content: '🚫 Geo-Blocked';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 17, 23, 0.95);
    color: #fca5a5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #ef4444;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    pointer-events: none;
}
.streaming-service-card.svc-dim .svc-works-badge {
    display: none !important;
}
.vpn-dynamic-alert {
    background: rgba(99,102,241,0.15) !important;
    border: 1px solid rgba(99,102,241,0.4) !important;
    animation: vpnPulse 2s infinite;
}
@keyframes vpnPulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}


/* Lighthouse Best Practice Mitigations */
img, video, canvas { overflow: clip !important; }

/* LIGHTHOUSE PERFORMANCE FIX: Stop Layout Reflow Animations */
.btn-view, .btn-cal, .event-league a, a.event-league {
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s !important;
}

.breadcrumb{display:flex;align-items:center;gap:8px;padding:18px 0 0;font-size:13px;color:var(--text-secondary);flex-wrap:wrap;}

.breadcrumb a{color:var(--text-secondary);display:flex;align-items:center;gap:4px;}.breadcrumb a:hover{color:var(--primary);}

