:root {
    --primary: #00c758;
    --primary-dark: #00a84a;
    --secondary: #dbeafe;
    --accent-pink: #f43f5e;
    --accent-yellow: #fbbf24;
    --bg-main: #f5f5f4;
    --card-bg: #ffffff;
    --text-main: #101828;
    --text-muted: #6a7282;
    --border-color: #101828;
    --footer-bg: #f5f5f4;
    --footer-text: #101828;
    --footer-border: #101828;
    --border-width: 3px;
    --shadow-offset: 5px;
    --shadow-offset-hover: 8px;
    --header-height: 80px;
    --transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* New spacing variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

.dark-theme {
    --bg-main: #0b0f19;
    --card-bg: #151b28;
    --text-main: #fcfcfd;
    --text-muted: #94a3b8;
    --border-color: #ffffff;
    --footer-bg: #0b0f19;
    --footer-text: #fcfcfd;
    --footer-border: #ffffff;
    --primary: #00c758;
    --secondary: #1e293b;
    --accent-yellow: #fbbf24;
}

/* CSS RESET & ACCESSIBILITY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a, button {
    outline: none;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

/* Ensure minimum touch targets on mobile for interactive elements */
@media (max-width: 768px) {
    a, button, .brutal-btn, .link-item a, .nav-content a {
        min-height: 44px;
        padding: 10px 16px;
        display: inline-flex;
        align-items: center;
    }
}

/* Neobrutalist Utilities */
.brutal-card {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--border-color);
    transition: var(--transition);
    border-radius: 12px;
}

.brutal-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-offset-hover) var(--shadow-offset-hover) 0px var(--border-color);
}

.brutal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--border-color);
    border: var(--border-width) solid var(--border-color);
    box-shadow: 4px 4px 0px var(--border-color);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.brutal-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--border-color);
    background: var(--primary-dark);
}

.brutal-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px var(--border-color);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Scroll Padding for Fixed Header */
section {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* Background Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), var(--secondary), transparent);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.2;
    animation: move 20s infinite alternate;
}

.blob-1 { top: -100px; left: -100px; }
.blob-2 { bottom: -100px; right: -100px; animation-delay: -5s; }
.blob-3 { top: 40%; left: 30%; width: 300px; height: 300px; animation-delay: -10s; }

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.1); }
}

/* Navbar */
.brutal-nav {
    position: sticky;
    top: 0;
    z-index: 1001; /* High enough to stay above everything but the mobile dropdown */
    background: var(--bg-main);
    border-bottom: var(--border-width) solid var(--border-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
    filter: drop-shadow(2px 2px 0px var(--border-color));
}

.highlight {
    color: var(--primary);
    background: var(--border-color);
    padding: 0 0.4rem;
    margin-left: 0.2rem;
}

.desktop-nav {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    margin: 0 1rem;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.desktop-nav a:hover, .desktop-nav a.active {
    background: var(--secondary);
    border-color: var(--border-color);
    box-shadow: 3px 3px 0px var(--border-color);
    transform: translate(-1px, -1px);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; /* Align to the start of "More" */
    background: var(--card-bg);
    min-width: 200px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: 6px 6px 0px var(--border-color);
    z-index: 1100;
    border-radius: 10px;
    overflow: hidden;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hover Bridge: restricted to button width */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 1000;
}

.dropdown-content a {
    color: var(--text-main) !important;
    padding: 0.8rem 1.2rem !important;
    display: block !important;
    border: none !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--secondary) !important;
    color: var(--text-main) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    border-radius: 10px;
    padding: 0.3rem 0.8rem;
    width: 220px;
    box-shadow: 3px 3px 0px var(--border-color);
    transition: var(--transition);
}

.search-box:focus-within {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px var(--border-color);
    width: 250px;
}

.search-box i {
    color: var(--border-color);
    margin-right: 0.4rem;
}

.search-box input {
    background: none;
    border: none;
    color: var(--text-main);
    width: 100%;
    outline: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
}

.icon-btn {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: 3px 3px 0px var(--border-color);
    flex-shrink: 0;
}

.icon-btn:hover {
    background: var(--accent-yellow);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--border-color);
}

.icon-btn i {
    font-size: 1.2rem;
}

/* Section Headers */
.section-header {
    margin: 4rem 0 2rem;
    text-align: left;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-header h2 i {
    color: var(--primary);
    background: var(--border-color);
    padding: 0.5rem;
    border-radius: 12px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: 4px 4px 0px var(--primary);
}

.section-header p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Hero Grid */
.hero-section {
    padding: 2rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.hero-card {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    box-shadow: 5px 5px 0px var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 120px;
    text-decoration: none;
    color: var(--text-main) !important;
    z-index: 1;
}

.hero-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px var(--border-color);
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
}

/* Card Themes */
.hero-card.theme-green { background-color: #00c758; }
.hero-card.theme-indigo { background-color: #6366f1; }
.hero-card.theme-amber { background-color: #f59e0b; }
.hero-card.theme-teal { background-color: #0d9488; }
.hero-card.theme-rose { background-color: #e11d48; }

.hero-card .tag {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--border-color);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    width: fit-content;
    letter-spacing: 0.5px;
}

.hero-card.featured {
    background-color: var(--primary);
}

.hero-card .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 2;
}

.hero-card .card-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    opacity: 0.25;
    z-index: 1;
    color: var(--border-color);
    transform: rotate(-15deg);
}

.hero-card .massive-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-card .sub-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0.25rem 0 0;
    line-height: 1.2;
}

.hero-card .card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.4);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    width: fit-content;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 900;
    background: #f1f5f9; /* Light Slate Neutral */
    color: #0f172a; /* Dark Slate Text */
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    margin-bottom: 0.75rem;
    width: fit-content;
    box-shadow: 2px 2px 0px var(--border-color);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ef4444; /* Vibrant Red */
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.dark-theme .live-indicator {
    background: #1e293b; /* Deep Slate */
    color: #f1f5f9; /* Off-white Text */
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* Content Sections */
.content-sections-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .content-sections-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-sections-wrapper {
        grid-template-columns: 1fr;
    }
}

.content-card {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    box-shadow: 6px 6px 0px var(--border-color);
    border-radius: 20px;
    padding: 1.75rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.content-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--border-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: var(--border-width) solid var(--border-color);
}

.card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.card-header h3 i {
    color: var(--primary);
    background: var(--border-color);
    padding: 0.4rem;
    border-radius: 8px;
    font-size: 1.2rem;
}

.card-header .view-all {
    text-decoration: none;
    font-size: 0.85rem;
    background: var(--accent-yellow);
    color: var(--border-color);
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    box-shadow: 3px 3px 0px var(--border-color);
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
}

.card-header .view-all:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px var(--border-color);
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link-item {
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: var(--transition), opacity 0.3s ease;
    border-bottom: 2px dashed var(--secondary);
}

/* Search Section */

.link-item.hidden, .hero-card.hidden {
    display: none;
}

.link-item:hover {
    background: var(--secondary);
    border-color: var(--border-color);
    transform: scale(1.02);
}

.link-item a {
    text-decoration: none;
    color: var(--text-main);
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.link-item .last-date {
    display: inline-block;
    font-size: 0.65rem;
    color: white;
    background: var(--border-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 800;
    margin-top: 0.4rem;
    text-transform: uppercase;
}

.link-item.new a::after {
    content: 'NEW';
    font-size: 0.65rem;
    background: var(--accent-pink);
    color: white;
    padding: 1px 6px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 900;
}

/* Secondary Grid */
.secondary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* ===== LANDING HEADLINE ===== */
.main-landing-title {
    padding: 3rem 0 2rem;
}

.landing-heading {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.landing-heading .highlight {
    display: inline-block;
    padding: 0 1rem;
    background: var(--border-color);
    color: var(--primary);
    transform: rotate(-2deg);
    margin-left: 0.5rem;
    border-radius: 4px;
}

.highlight-italic {
    font-style: italic;
    color: var(--primary);
}

.landing-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    .landing-heading {
        font-size: clamp(1.8rem, 5vw, 3rem);
        letter-spacing: -1px;
    }
    .landing-subtext {
        font-size: 0.95rem;
    }
    .main-landing-title {
        padding: 2rem 0 1.5rem;
    }
    .main-landing-title .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .main-landing-title .nav-actions .brutal-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    box-shadow: 8px 8px 0px var(--border-color);
    border-radius: 24px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}

.faq-item {
    border: none;
    border-bottom: 2px solid var(--secondary);
    transition: var(--transition);
}

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

.faq-question {
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255,255,255,0.03);
}

.faq-answer-content {
    padding: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.faq-item.active .faq-question {
    background: var(--bg-main);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* + becomes x */
    color: var(--accent-pink);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Smooth max-height trick */
    transition: max-height 0.5s ease-in;
}

/* ===== SEO CONTENT ===== */
.seo-content {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--bg-main);
    border: var(--border-width) solid var(--border-color);
    border-radius: 24px;
    box-shadow: 8px 8px 0px var(--secondary);
}

.seo-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.seo-content p {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.brutal-footer {
    margin-top: 8rem;
    padding: 4rem 0 3rem;
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: var(--border-width) solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .brutal-footer {
        margin-top: 5rem;
        padding: 3rem 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-links-list {
        align-items: center;
    }
    .footer-social-row {
        justify-content: center;
    }
    .footer-info .logo {
        justify-content: center;
    }
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.footer-info .logo {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 900;
}

.footer-info p {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-links-list li a:hover {
    color: var(--text-main);
    transform: translateX(4px);
}



/* Social icons - Clean Squircle style */
.footer-social-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 3px solid var(--border-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--border-color);
    font-size: 1.25rem;
    box-shadow: none; /* Removed for cleaner look */
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.footer-disclaimer-card {
    padding: 2rem;
    background: #ffffff;
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.footer-disclaimer-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.6;
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom-bar p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}



/* Small adjustments */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Social Float */
.social-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.social-btn {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    border: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 4px 4px 0px var(--border-color);
    background: var(--card-bg);
}

.social-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--border-color);
}

.social-btn.whatsapp:hover { background: #25D366; color: white; }
.social-btn.telegram:hover { background: #0088cc; color: white; }

/* Mobile Refinements */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: var(--bg-main);
        flex-direction: column;
        padding: 0;
        border-bottom: var(--border-width) solid var(--border-color);
        z-index: 999;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, visibility 0.4s;
        visibility: hidden;
    }

    .desktop-nav.active {
        display: flex;
        max-height: 100vh;
        visibility: visible;
    }

    .desktop-nav a {
        width: 100%;
        padding: 12px 24px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        border-radius: 0;
        font-size: 1.1rem;
        justify-content: flex-start;
        min-height: 44px;
    }

    .desktop-nav a:hover, .desktop-nav a.active {
        background: var(--secondary);
        box-shadow: none;
        transform: none;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.03);
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .mobile-only {
        display: flex !important;
    }

    .nav-actions .search-box {
        display: none; /* Hide search in header on mobile */
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Dropdown Hover Stability */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px; /* Bridge the gap */
    display: block;
}

/* Modal / Overlay fix for mobile */
body.menu-open {
    overflow: hidden;
}

/* Detail Pages Utility */
.detail-main {
    padding-top: 2rem;
}

.brutal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: var(--border-width) solid var(--border-color);
    box-shadow: 4px 4px 0px var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.brutal-table th, .brutal-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.brutal-table th {
    background: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.brutal-table tr:nth-child(even) {
    background: #fdfdfd;
}

@media (max-width: 768px) {
    .brutal-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Scroll Customization */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border: 3px solid var(--bg-main);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========================================
   PREMIUM SEARCH OVERLAY (PHASE 4)
   ======================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 3rem 1.5rem;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: block;
    opacity: 1;
}

.dark-theme .search-overlay {
    background: rgba(11, 15, 25, 0.9);
}

.overlay-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.search-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    border-radius: 16px;
    padding: 0 1.5rem;
    box-shadow: 6px 6px 0px var(--border-color);
}

.search-input-wrapper i {
    font-size: 1.8rem;
    color: var(--border-color);
    margin-right: 1.2rem;
}

#overlay-search-input {
    width: 100%;
    height: 70px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: inherit;
}

.close-btn {
    background: var(--accent-pink);
    color: white;
    border: var(--border-width) solid var(--border-color);
    border-radius: 12px;
    padding: 0 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 4px 4px 0px var(--border-color);
    transition: var(--transition);
}

.close-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--border-color);
}

.search-results-container {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding-right: 1rem;
}

.search-results-container::-webkit-scrollbar {
    width: 8px;
}
.search-results-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.search-placeholder {
    text-align: center;
    padding: 5rem 0;
    opacity: 0.6;
}

.search-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.search-placeholder p {
    font-size: 1.4rem;
    font-weight: 700;
}

.overlay-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 4px 4px 0px var(--border-color);
    transition: var(--transition);
}

.overlay-result-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: -4px 4px 0px var(--primary);
}

.result-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.result-tag {
    font-size: 0.75rem;
    background: var(--secondary);
    color: var(--text-main);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.overlay-result-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .search-header {
        flex-direction: column;
        gap: 1rem;
    }
    .close-btn {
        width: 100%;
        justify-content: center;
        height: 50px;
    }
    #overlay-search-input {
        height: 60px;
        font-size: 1.2rem;
    }
}

.suggestions-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.suggestion-pill {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 3px 3px 0px var(--border-color);
}

.suggestion-pill:hover {
    background: var(--secondary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--border-color);
    border-color: var(--primary);
}

.suggestion-pill i {
    color: var(--primary);
}

.suggestions-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-main);
}

/* --- LIVE JOB TICKER v3.0: High-Fidelity Authority --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 56px;
    background-color: var(--card-bg);
    border-bottom: var(--border-width) solid var(--border-color);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    box-shadow: inset 0 -4px 10px rgba(0,0,0,0.1);
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85); /* Glass base */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 25px;
    font-weight: 950;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    z-index: 20;
    border-right: var(--border-width) solid var(--border-color);
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse-ring 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 1; }
    80%, 100% { transform: scale(2.5); opacity: 0; }
}

.ticker {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    padding-left: 175px; 
    padding-right: 100%;
    box-sizing: content-box;
    animation: ticker-v3 100s linear infinite;
    will-change: transform;
}

.ticker:hover {
    animation-duration: 500s; /* Ultra slow down instead of stop */
}

.ticker__item {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 40px;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.ticker__item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
}

.ticker__item:hover::before {
    left: 150%;
    transition: left 0.6s ease-in-out;
}

.ticker__item i {
    margin-right: 14px;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Keyword Highlighting Badges */
.ticker-badge {
    background: rgba(255,255,255,0.25);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    vertical-align: middle;
    backdrop-filter: blur(4px);
}

/* Ticker v3.0 Gradient Palette */
.ticker-red { background: linear-gradient(135deg, #ff0033 0%, #cc0000 100%); }
.ticker-blue { background: linear-gradient(135deg, #2e31ff 0%, #1a1aff 100%); }
.ticker-orange { background: linear-gradient(135deg, #ff8a00 0%, #e65100 100%); }
.ticker-darkred { background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%); }
.ticker-green { background: linear-gradient(135deg, #00c853 0%, #1b5e20 100%); }
.ticker-pink { background: linear-gradient(135deg, #ff4081 0%, #c2185b 100%); }
.ticker-cyan { background: linear-gradient(135deg, #00e5ff 0%, #0097a7 100%); }
.ticker-purple { background: linear-gradient(135deg, #aa00ff 0%, #4a148c 100%); }

@keyframes ticker-v3 {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

[data-theme="dark-theme"] .ticker-wrap {
    background-color: #0a0a0a;
}
[data-theme="dark-theme"] .ticker-label {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-right-color: #333;
}
[data-theme="dark-theme"] .ticker__item {
    border-right-color: rgba(255,255,255,0.05);
}


/* --- RICH DETAIL PAGE COMPONENTS v5.0 --- */
.detail-container {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.detail-header {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 10px 10px 0px var(--border-color);
    margin-bottom: 40px;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-main);
}

.detail-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 6px 6px 0px var(--border-color);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

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

.requirement-section {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 6px 6px 0px var(--border-color);
    margin-bottom: 40px;
}

.links-table-container {
    overflow-x: auto;
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    border-radius: 16px;
    box-shadow: 8px 8px 0px var(--border-color);
    margin-top: 40px;
}

.links-table {
    width: 100%;
    border-collapse: collapse;
}

.links-table th {
    background: var(--text-main);
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 900;
}

.links-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

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

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid var(--border-color);
    transition: transform 0.2s;
}

.btn-link:hover {
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0 var(--border-color);
}

@media (max-width: 768px) {
    .detail-title { font-size: 1.8rem; }
    .info-grid { grid-template-columns: 1fr; }
}

[data-theme="dark-theme"] .info-list li {
    border-bottom-color: rgba(255,255,255,0.05);
}
[data-theme="dark-theme"] .links-table th {
    background: #222;
}

/* --- EXPANDED DETAIL COMPONENTS v5.1 --- */
.summary-box {
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 6px 6px 0px var(--border-color);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.summary-box::before {
    content: "QUICK SUMMARY";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 900;
    border-bottom-left-radius: 12px;
}

.summary-text {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 600;
    color: var(--text-main);
}

.vacancy-section {
    margin-top: 40px;
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vacancy-badge {
    background: var(--text-main);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 900;
    border: 2px solid var(--border-color);
}

.rich-table-wrapper {
    overflow-x: auto;
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    border-radius: 16px;
    box-shadow: 8px 8px 0px var(--border-color);
}

.rich-table {
    width: 100%;
    border-collapse: collapse;
}

.rich-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 900;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.rich-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
    font-size: 0.95rem;
}

.rich-table tr:nth-child(even) {
    background: rgba(0,0,0,0.02);
}

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

[data-theme="dark-theme"] .rich-table th {
    background: #1a1a1a;
    color: var(--text-main);
}

[data-theme="dark-theme"] .rich-table tr:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

/* ========================================
   MOBILE OPTIMIZATION (Milestone v6.0)
   ======================================== */
@media (max-width: 992px) {
    .desktop-nav {
        display: none; /* Hide standard nav on mid-to-small screens */
    }
    
    .search-box {
        width: 160px; /* Slimmer search for tablets */
    }
    
    .search-box:focus-within {
        width: 200px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-content {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }

    /* Search Bar Mobile Fix */
    .search-box {
        display: none; /* Hide the input box, we will use the overlay trigger */
    }

    .mobile-search-trigger {
        display: flex !important;
        background: var(--primary);
        color: var(--border-color);
    }

    /* Stack Grids */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .content-sections-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .detail-container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .detail-header {
        padding: 25px;
    }

    .detail-title {
        font-size: 1.6rem;
    }

    .summary-box {
        padding: 20px;
    }

    .summary-text {
        font-size: 0.95rem;
    }

    /* Table Fixes */
    .rich-table th {
        background: var(--border-color) !important;
        color: white !important;
        padding: 12px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .rich-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
        min-width: 140px; /* Prevent squashing */
    }

    .vacancy-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none; /* Only show icon + "Sarkari" if needed, but let's try keeping it first */
    }
    
    .ticker-label {
        padding: 0 15px;
        font-size: 0.7rem;
    }
    
    .ticker {
        padding-left: 120px;
    }
}

/* Ensure helper icons are visible on mobile header */
.mobile-search-trigger {
    display: none;
}

/* Hero Search Bar (Milestone v6.0) */
.hero-search-wrapper {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    box-shadow: 6px 6px 0px var(--border-color);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    max-width: 600px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search-wrapper:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--border-color);
}

.hero-search-wrapper i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 1.5rem;
}

.hero-search-wrapper span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    flex: 1;
}

.hero-search-wrapper kbd {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 2px 2px 0px var(--border-color);
}

@media (max-width: 768px) {
    .hero-search-wrapper {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-search-wrapper span {
        font-size: 0.95rem;
    }
    
    .hero-search-wrapper kbd {
        display: none; /* No keyboard on mobile */
    }
}

/* ========================================
   MOBILE PERFECTION (Milestone v6.1)
   ======================================== */
@media (max-width: 768px) {
    /* 2x2 Hero Grid Refinement */
    .hero-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .hero-card {
        padding: 0.85rem !important;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-card .massive-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    .hero-card .sub-title {
        font-size: 0.75rem !important;
        line-height: 1.2;
    }

    .hero-card .card-icon {
        font-size: 1.5rem !important;
        opacity: 0.2;
        bottom: 5px !important;
        right: 5px !important;
    }

    .hero-card .tag {
        font-size: 0.6rem !important;
        padding: 2px 6px !important;
    }

    .hero-card .card-meta {
        font-size: 0.65rem !important;
        margin-top: 0.5rem !important;
    }

    /* Ticker Scaling */
    .ticker-wrap {
        height: 42px !important;
    }

    .ticker-label {
        padding: 0 12px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
    }

    .ticker {
        padding-left: 110px !important;
        animation-duration: 60s !important; /* Slightly faster at small height */
    }

    .ticker__item {
        padding: 0 20px !important;
        font-size: 0.85rem !important;
    }

    .pulse-dot {
        width: 6px !important;
        height: 6px !important;
        margin-right: 8px !important;
    }

    /* Detail Page Fixes (Padding & Fonts) */
    .detail-container {
        margin-top: 90px !important;
        padding: 0 10px !important;
    }

    .sarkari-content, .summary-box, .requirement-section, .info-card {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 12px !important;
    }

    .summary-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .detail-title {
        font-size: 1.4rem !important;
    }

    /* Broken List Alignment Fix */
    .sarkari-content ul, .summary-box ul, .requirement-section ul {
        padding-left: 1.2rem !important;
        margin: 0.5rem 0 !important;
    }

    .sarkari-content li, .summary-box li, .requirement-section li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        display: list-item !important; /* Force standard list behavior if flex broke it */
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .sarkari-content h1, .sarkari-content h2, .sarkari-content h3 {
        font-size: 1.1rem !important;
        margin-top: 1rem !important;
    }

    .brutal-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .ticker-label span {
        display: none; /* Hide 'LIVE' if needed, keep 'SARKARI' */
    }
    
    .hero-grid {
        gap: 0.5rem !important;
    }

    .hero-card .massive-title {
        font-size: 0.85rem !important;
    }
}

/* ========================================
   GLOBAL SCALING (Milestone v6.2)
   "Yani ab text ka size 1x to to main screen main uska size ho chota dikhe like 0.5x"
   ================= */
html {
    font-size: 14px !important; /* Reduction from 16px to 14px for cleaner, denser feel */
}

.landing-heading {
    font-size: 2.8rem !important; /* Slightly smaller on desktop */
}

.landing-subtext {
    font-size: 1.1rem !important;
}

.brutal-btn {
    font-size: 0.9rem !important;
    padding: 0.6rem 1.2rem !important;
}

.hero-card .massive-title {
    font-size: 1.2rem !important;
}

.detail-title {
    font-size: 2.2rem !important;
}

/* More Dense Overrides for Mobile (320px-480px) */
@media (max-width: 480px) {
    html {
        font-size: 13px !important;
    }

    .landing-heading {
        font-size: 1.8rem !important;
    }

    .landing-subtext {
        font-size: 0.9rem !important;
    }

    .hero-grid {
        gap: 0.4rem !important;
    }

    .hero-card {
        min-height: 110px !important;
        padding: 0.6rem !important;
    }

    .hero-card .massive-title {
        font-size: 0.75rem !important;
    }

    .hero-card .sub-title {
        font-size: 0.65rem !important;
    }

    /* Scaling other sections */
    .section-title {
        font-size: 1.1rem !important;
    }

    .brutal-table th, .brutal-table td {
        font-size: 0.75rem !important;
    }

    .ticker__item {
        font-size: 0.75rem !important;
    }
}
