:root {
    --bg-color: #0b0f17;
    --text-color: #f0f6fc;
    --accent-neon-pink: #ff007f;
    --accent-neon-cyan: #00f0ff;
    --card-bg-gradient: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    --border-color: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 80px !important;
}

header {
    text-align: center;
    padding: 1.0rem 1.0rem 0.8rem 1.0rem;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.brand-badge {
    display: inline-block;
    border: 1px solid var(--accent-neon-cyan);
    color: var(--accent-neon-cyan);
    padding: 0.1rem 0.4rem;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 12px var(--accent-neon-pink), 0 0 24px var(--accent-neon-pink);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subtitle {
    color: var(--accent-neon-cyan);
    font-size: 1.0rem;
    margin-top: 0.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
}

main {
    width: 100%;
    max-width: 850px;
    padding: 1.0rem;
    box-sizing: border-box;
    flex: 1;
}

.breadcrumbs {
    margin-bottom: 1.0rem;
    font-size: 0.95rem;
    color: #8b949e;
}

.breadcrumbs a {
    color: var(--accent-neon-cyan);
    text-decoration: none;
    font-weight: bold;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* ================================================================= */
/* HOME PAGE STATE GRID & SEARCH FILTER (Part 2)                     */
/* ================================================================= */

.intro-text {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-neon-pink);
    padding: 0.8rem 1.0rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1.0rem;
    color: #8b949e;
    line-height: 1.5;
    font-size: 1.0rem;
}

.intro-text strong {
    color: #fff;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.5rem;
    margin-top: 1.0rem;
    width: 100%;
    box-sizing: border-box;
}

.state-card {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.state-card.hide-card {
    display: none !important;
}

.state-card:hover {
    border-color: var(--accent-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
    transform: translateY(-3px);
}

.state-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0.5rem;
}

.state-count {
    color: var(--accent-neon-cyan);
    font-size: 0.8rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.3rem 0;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    width: 110px; 
    flex-shrink: 0; 
    box-sizing: border-box;
    white-space: nowrap;
}

#state-search-input:focus {
    border-color: var(--accent-neon-pink) !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

/* ================================================================= */
/* STATE PAGE - THEATER LIST & BADGE FILTERS                        */
/* ================================================================= */

.theater-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.theater-card {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.0rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
}

.city-tag {
    background: #1f242c;
    padding: 0.5rem 1.0rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--accent-neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.card-desc {
    color: #c9d1d9;
    line-height: 1.65;
    margin: 1.5rem 0;
    font-size: 1.0rem;
}

.meta-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #e1e7ed;
}

.view-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-neon-pink), #a80054);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.view-btn:hover {
    box-shadow: 0 0 18px rgba(255, 0, 127, 0.45);
    transform: translateY(-1px);
}

.seo-state-intro {
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    font-size: 1.05rem !important;
}

.filter-badge-bar {
    display: flex;
    justify-content: flex-start;
    gap: 0.6rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.filter-badge-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8b949e;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-badge-btn:hover {
    border-color: var(--accent-neon-pink);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.filter-badge-btn.filter-active {
    background: rgba(0, 240, 255, 0.05) !important;
    border-color: var(--accent-neon-cyan) !important;
    color: #fff !important;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.25) !important;
}

.theater-card.hide-theater, 
.ad-container.hide-theater,
.state-page-ad.hide-theater {
    display: none !important;
}

/* ================================================================= */
/* DETAIL PAGE LAYOUT & SIDEBAR COMPONENTS (Part 3)                 */
/* ================================================================= */

.detail-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.main-info {
    flex: 2;
    min-width: 320px;
}

.sidebar {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-title {
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.history-stamp {
    color: var(--accent-neon-pink);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.0rem;
}

.history-stamp strong {
    color: #fff;
    background: rgba(255, 0, 127, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.specs-box {
    background: rgba(22, 27, 34, 0.4);
    border: 1px solid #21262d;
    border-radius: 14px;
    padding: 2rem;
    margin-top: 1.0rem;
}

.specs-box h4 {
    margin-top: 0;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.0rem;
}

.specs-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-box li {
    display: flex;
    padding: 1.0rem 0;
    border-bottom: 1px solid #21262d;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative !important;
}

.specs-box li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: bold;
    width: 150px;
    color: var(--accent-neon-cyan);
}

.spec-val {
    color: #c9d1d9;
    flex: 1;
    min-width: 180px;
}

.action-card {
    background: var(--card-bg-gradient);
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.action-card h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.action-helper-text {
    font-size: 0.88rem;
    color: #8b949e;
    line-height: 1.5;
    margin-bottom: 1.8rem;
    text-align: left;
}

.maps-btn, .web-btn {
    display: block;
    width: 100%;
    padding: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.02rem;
    transition: transform 0.2s;
    margin-bottom: 1.0rem;
}

.maps-btn {
    background: #238636;
    color: #fff;
}

.maps-btn:hover {
    background: #2ea44f;
    transform: translateY(-1px);
}

.web-btn {
    background: transparent;
    color: var(--accent-neon-cyan);
    border: 1px solid var(--accent-neon-cyan);
}

.web-btn:hover {
    background: rgba(0, 240, 255, 0.05);
}

.ad-container {
    margin-top: 0;
    background: #12161f;
    border: 1px dashed #30363d;
    padding: 1.2rem; 
    text-align: center;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.ad-label {
    margin: 0 0 0.8rem 0;
    font-size: 0.75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-placeholder {
    color: #484f58;
    font-size: 0.9rem;
    font-style: italic;
}

/* ================================================================= */
/* SEO CONTENT & INFORMATION FAQ SECTIONS                            */
/* ================================================================= */

.seo-faq-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.seo-faq-section h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0,240,255,0.2);
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: var(--accent-neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #8b949e;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.faq-intro-text {
    background: rgba(0, 240, 255, 0.02) !important;
    border: 1px solid rgba(0, 240, 255, 0.1) !important;
    border-left: 4px solid var(--accent-neon-cyan) !important;
    padding: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 4px 12px 12px 4px !important;
    color: #9ea7b3 !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    text-align: left !important;
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.05), 0 4px 12px rgba(0,0,0,0.2) !important;
}

.faq-intro-text strong {
    color: var(--accent-neon-pink) !important;
    text-shadow: 0 0 5px rgba(255, 0, 127, 0.2) !important;
    font-weight: 700 !important;
}

#faq-scroll-bait {
    color: var(--accent-neon-cyan) !important;
    cursor: pointer;
    transition: color 0.2s ease;
}

#faq-scroll-bait:hover {
    color: var(--accent-neon-pink);
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

/* ================================================================= */
/* FOOTER, MODALS & COMPLIANCE STYLES (Part 4 - Finale)              */
/* ================================================================= */

footer {
    margin-top: 1rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    width: 100%;
}

footer p {
    color: #484f58;
    font-size: 0.85rem;
    margin: 0;
}

#open-privacy, #open-terms {
    color: var(--accent-neon-cyan);
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

#open-privacy { margin-left: 10px; }
#open-terms { margin-left: 12px; }

#open-privacy:hover, #open-terms:hover {
    color: var(--accent-neon-pink);
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #161b22;
    border: 1px solid var(--accent-neon-cyan);
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
    margin: 1rem auto;
    text-align: left;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.0rem;
    font-size: 2rem;
    color: #8b949e;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--accent-neon-pink);
}

.modal-content h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-top: 0;
    border-bottom: 1px solid #30363d;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body {
    color: #c9d1d9;
    font-size: 0.92rem;
    line-height: 1.6;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-top: 1.5rem;
}

.modal-body h3 {
    color: var(--accent-neon-cyan);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* ================================================================= */
/* COPY ACTION, TRIVIA ACCORDIONS & STICKY FLOATING MENU             */
/* ================================================================= */

.copy-badge-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #8b949e;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.copy-badge-btn:hover {
    border-color: var(--accent-neon-pink);
    color: #fff;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

.toast-text {
    font-size: 0.8rem;
    color: var(--accent-neon-cyan);
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}

.toast-text.show {
    opacity: 1;
}

.trivia-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.trivia-subtitle {
    color: #8b949e;
    font-size: 0.95rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.trivia-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trivia-card {
    background: linear-gradient(135deg, #12161f 0%, #0b0f17 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trivia-card:hover {
    border-color: var(--accent-neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

.trivia-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trivia-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    transition: color 0.2s;
}

.trivia-card:hover h3 {
    color: var(--accent-neon-pink);
}

.trivia-arrow {
    color: var(--accent-neon-cyan);
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.trivia-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s;
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trivia-card.active-trivia .trivia-body {
    max-height: 300px;
    margin-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.trivia-card.active-trivia .trivia-arrow {
    transform: rotate(90deg);
    color: var(--accent-neon-pink);
}

.nav-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.0rem;
    width: 100%;
}

.nav-utility-bar .breadcrumbs {
    margin: 0 !important;
}

#night-vision-toggle {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #8b949e;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#night-vision-toggle:hover {
    border-color: var(--accent-neon-pink);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.nav-jump-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(11, 15, 23, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 240, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.nav-jump-menu.menu-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-jump-menu a {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c9d1d9;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-jump-menu a:hover {
    border-color: var(--accent-neon-pink);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

/* ================================================================= */
/* TACTICAL LOW-LIGHT RED NIGHT MODE OVERRIDES                       */
/* ================================================================= */

body.tactical-red {
    --accent-neon-pink: #990000 !important;
    --accent-neon-cyan: #ff3333 !important;
    background-color: #050000 !important;
}

body.tactical-red h1 {
    text-shadow: 0 0 10px #ff0000, 0 0 24px #ff0000 !important;
}

body.tactical-red .state-count {
    color: #ff3333 !important;
    background: rgba(255, 0, 0, 0.05) !important;
    border-color: rgba(255, 0, 0, 0.3) !important;
}

body.tactical-red .view-btn {
    background: linear-gradient(45deg, #cc0000, #550000) !important;
}

/* ================================================================= */
/* RESPONSIVE MOBILE OPTIMIZATION PATCHES (iPhone & Android)         */
/* ================================================================= */

@media (max-width: 480px) {
    .specs-box {
        padding: 1.2rem !important;
    }
    
    .specs-box li {
        display: flex !important;
        flex-direction: column !important; 
        align-items: flex-start !important;
        gap: 0.4rem !important;
        padding: 1rem 0 !important;
    }

    .spec-label {
        width: 100% !important; 
        max-width: 100% !important;
        flex-shrink: 1 !important;
        font-size: 1rem !important;
        font-weight: bold !important;
        color: var(--accent-neon-cyan) !important;
    }

    .spec-val {
        width: 100% !important;
        font-size: 1.05rem !important;
        color: #fff !important;
        line-height: 1.5 !important;
        padding-left: 0.2rem !important;
    }
    
    .copy-badge-btn {
        margin-left: 12px !important;
        padding: 0.2rem 0.6rem !important;
        font-size: 0.8rem !important;
    }

    footer p {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.6rem !important;
        font-size: 0.85rem !important;
    }
    
    #open-privacy, #open-terms {
        margin-left: 0 !important;
        display: inline-block !important;
    }

    #open-privacy { margin-top: 0.2rem !important; }
    #open-terms { margin-top: 0.1rem !important; }

    #night-vision-toggle {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.78rem !important;
    }

    .trivia-card { padding: 1rem 1.2rem !important; }
    .trivia-card h3 { font-size: 1.05rem !important; }
    .trivia-body { font-size: 0.9rem !important; }

    .nav-jump-menu {
        bottom: 12px !important;
        padding: 0.35rem 0.6rem !important;
        gap: 0.3rem !important;
        width: 94% !important;
        max-width: 94% !important;
    }

    .nav-jump-menu a {
        font-size: 0.72rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .seo-faq-section h3 { font-size: 1.4rem !important; }
    .faq-intro-text { padding: 1rem !important; font-size: 0.95rem !important; line-height: 1.6 !important; }
}

/* ================================================================= */
/* GOOGLE EEAT EDITORIAL AUTHORITY CARD STYLING                      */
/* ================================================================= */
.eeat-authority-card {
    background: rgba(22, 27, 34, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
    border-left: 4px solid var(--accent-neon-cyan) !important;
    padding: 1.5rem !important;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    border-radius: 4px 16px 16px 4px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(0, 240, 255, 0.02) !important;
    text-align: left !important;
}

.eeat-authority-card p {
    color: #8b949e !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-style: italic !important;
}

.eeat-authority-card p strong {
    color: #fff !important;
    font-style: normal !important;
    font-weight: 600 !important;
}

.eeat-badge {
    display: inline-block !important;
    background: rgba(0, 240, 255, 0.08) !important;
    border: 1px solid rgba(0, 240, 255, 0.3) !important;
    color: var(--accent-neon-cyan) !important;
    padding: 0.2rem 0.6rem !important;
    font-size: 0.72rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    margin-bottom: 0.8rem !important;
}

/* Mobile responsive patch for EEAT card */
@media (max-width: 480px) {
    .eeat-authority-card {
        padding: 1.2rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .eeat-authority-card p {
        font-size: 0.88rem !important;
    }
}
