/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #14161b;
    color: #ffffff;
}

/* Navbar Brand */
.navbar-brand {
    font-weight: bold;
}

/* Navbar Link Base Style */
.nav-link {
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Navbar Link Hover Style */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #ff4c4c;
    font-weight: bold;
    background-color: transparent;
}

/* Dropdown Link Hover Style */
.navbar-dark .dropdown-menu .dropdown-item:hover {
    color: #000000;
    font-weight: bold;
    background-color: transparent;
}

/* Active Link Style */
.navbar-dark .navbar-nav .nav-link.active {
    color: #ff4c4c;
    font-weight: bold;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Box */
.modal-box {
    background: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
}

/* Shared Notice Style */
.shared-notice {
    margin-top: 20px;
    padding: 15px;
    color: #ffffff;
    background-color: #ff4c4c;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background:
        linear-gradient(135deg, rgba(255, 76, 76, 0.92), rgba(255, 120, 120, 0.75)),
        linear-gradient(180deg, #1c1f26, #17191f);
    color: #ffffff;
    text-align: center;
    padding: 70px 20px;
    margin-bottom: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255, 76, 76, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(20, 22, 27, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 18px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 12px;
}

.hero-subtext {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #f4f4f4;
    max-width: 760px;
    margin: 0 auto;
}

.hero-actions .btn {
    min-width: 200px;
    border-radius: 10px;
    font-weight: bold;
    padding: 12px 22px;
}

/* Audio List Container */
.audio-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Individual Audio Item */
.audio-item {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff4c4c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    color: #ffffff;
    margin-bottom: 15px;
}

.audio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.audio-item h5 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4c4c;
}

.audio-item p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: #d7d7d7;
}

/* General Audio Player Styling */
audio {
    width: 100%;
    border-radius: 5px;
}

@media (min-width: 768px) {
    audio {
        width: 50%;
        margin: 0 auto;
        display: block;
    }
}

/* Shared Page Boxes */
.map-container,
.feature-card,
.info-card,
.subscribe-card,
.counties-section,
.how-to-container,
.image-container,
.coming-soon-container {
    background: #1b1e25;
    border-radius: 14px;
    border: 1px solid #2a2f39;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* Map Container */
.map-container {
    margin-top: 20px;
    text-align: center;
    padding: 28px 20px;
}

.map-container h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 14px;
}

.section-text {
    color: #e2e2e2;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 820px;
    margin: 0 auto 24px auto;
}

/* Map Image */
.map-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff4c4c;
    border-radius: 10px;
}

/* Features Section */
.features-section {
    margin-top: 40px;
}

.feature-card {
    height: 100%;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #ff4c4c;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    font-size: 2.4rem;
    color: #ff4c4c;
    margin-bottom: 16px;
}

.feature-card h4 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.feature-card p {
    color: #e2e2e2;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Info Section */
.info-section {
    margin-top: 40px;
}

.info-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-card {
    height: 100%;
    padding: 24px 20px;
    text-align: center;
}

.info-card h5 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-card p {
    color: #e2e2e2;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Station Button Styling */
.station-btn {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #2c2f33;
    border: 2px solid #ff4c4c;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.station-btn:hover {
    background-color: #ff4c4c;
    color: #ffffff;
    transform: scale(1.02);
}

.station-btn:focus {
    background-color: #ff9a9e;
    color: #000000;
    outline: none;
}

/* Subscription Cards */
.subscribe-card {
    color: #ffffff;
    text-align: center;
    padding: 30px;
    border: 2px solid #ff4c4c;
    width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.subscribe-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.subscribe-card .btn-primary {
    background-color: #ffcc00;
    border: none;
    font-size: 1.2rem;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subscribe-card .btn-primary:hover {
    background-color: #ffbf00;
    color: #000000;
    text-decoration: none;
}

/* Subscription Container */
.subscribe-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.subscribe-card {
    flex: 1 1 300px;
    max-width: 300px;
    margin: 0;
}

/* Subscribe Intro */
.subscribe-intro {
    background: linear-gradient(to right, #ff4c4c, #ff9a9e);
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border: 2px solid #ff4c4c;
}

.subscribe-intro h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.subscribe-intro p {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* General Typography */
.text-center h1,
.text-center h2 {
    font-weight: bold;
}

.text-center p {
    line-height: 1.6;
}

/* Subscribe Button */
.subscribe-button {
    background-color: #ffcc00;
    border: none;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.subscribe-button:hover {
    background-color: #ffbf00;
    color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.coming-soon-container {
    margin-top: 50px;
    padding: 30px;
}

.coming-soon-container h1 {
    color: #ff4c4c;
    font-size: 2.5rem;
    font-weight: bold;
}

.coming-soon-container p {
    color: #e2e2e2;
    font-size: 1.15rem;
    margin-top: 15px;
}

.coming-soon-container .btn {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: bold;
}

.image-container {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff4c4c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-container p {
    color: #e2e2e2;
    font-size: 1.1rem;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .image-container {
        padding: 5px;
        margin-top: 10px;
    }

    .image-container img {
        border-width: 1px;
    }
}

/* Counties Section Styling */
.counties-section {
    margin-top: 20px;
    padding: 20px;
    color: #ffffff;
}

.counties-section h3 {
    color: #ff4c4c;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.counties-list {
    margin: 0;
    padding: 0 0 0 20px;
    list-style-type: disc;
    color: #e2e2e2;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* How-To Container */
.how-to-container {
    margin-top: 20px;
    padding: 20px;
    border: 2px solid #ff4c4c;
    color: #ffffff;
}

.how-to-container h2 {
    color: #ff4c4c;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.how-to-container ol {
    color: #e2e2e2;
    line-height: 1.8;
    font-size: 1.1rem;
}

.how-to-container a.btn-warning {
    margin-top: 15px;
    font-weight: bold;
}

/* Removed homepage supporter styling intentionally */

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 55px 16px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .map-container h2,
    .info-section h2 {
        font-size: 1.7rem;
    }

    .feature-card,
    .info-card {
        padding: 22px 16px;
    }

    .hero-actions .btn {
        width: 100%;
        margin: 8px 0 !important;
    }
}
.county-page {
    max-width: 1200px;
}

.county-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.county-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-bottom: 0;
}

.county-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.county-card {
    background: linear-gradient(180deg, #171a21 0%, #12151b 100%);
    border: 1px solid #2a2f39;
    border-left: 4px solid #d32f2f;
    border-radius: 14px;
    padding: 22px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    height: 100%;
}

.county-link .county-card:hover {
    transform: translateY(-4px);
    border-color: #3a404c;
    border-left-color: #ff4c4c;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.county-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.county-state {
    color: #9aa4b2;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.county-name {
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.county-desc {
    color: rgba(255,255,255,0.68);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.county-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.county-status.full {
    background: rgba(25, 135, 84, 0.16);
    color: #6ee7a8;
    border: 1px solid rgba(25, 135, 84, 0.35);
}

.county-status.beta {
    background: rgba(255, 193, 7, 0.14);
    color: #ffd666;
    border: 1px solid rgba(255, 193, 7, 0.35);
}

@media (max-width: 768px) {
    .county-title {
        font-size: 1.8rem;
    }

    .county-card {
        padding: 18px;
    }

    .county-name {
        font-size: 1.25rem;
    }
}
.public-safety-page {
    max-width: 1100px;
}

.public-safety-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.public-safety-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(211, 47, 47, 0.12);
    border: 1px solid rgba(211, 47, 47, 0.35);
    color: #ff6b6b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.public-safety-title {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.public-safety-subtitle {
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
    max-width: 760px;
    margin: 0 auto;
}

.public-safety-card {
    background: linear-gradient(180deg, #171a21 0%, #12151b 100%);
    border: 1px solid #2a2f39;
    border-left: 4px solid #d32f2f;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.section-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.public-safety-card p {
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.scanner-link {
    color: #ff5c5c;
    font-weight: 600;
    text-decoration: none;
}

.scanner-link:hover {
    color: #ff8080;
    text-decoration: underline;
}

.notice-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(211, 47, 47, 0.08);
    border: 1px solid rgba(211, 47, 47, 0.25);
    color: #ffd2d2;
}

.requirements-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.requirement-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid #2d333d;
    border-radius: 10px;
    padding: 14px 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}

.requirement-item::before {
    content: "•";
    color: #ff4c4c;
    font-weight: 700;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .public-safety-title {
        font-size: 1.8rem;
    }

    .public-safety-card {
        padding: 20px;
    }

    .section-title {
        font-size: 1.2rem;
    }
}
.scannergrid-body {
    background-color: #111318;
    color: #ffffff;
}

/* Navbar */
.sg-navbar {
    background: rgba(17, 19, 24, 0.96);
    border-bottom: 1px solid rgba(211, 47, 47, 0.45);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.sg-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: #ff4c4c !important;
    letter-spacing: 0.02em;
}

.sg-brand:hover {
    color: #ff6b6b !important;
}

.sg-nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    padding: 0.7rem 0.9rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sg-nav-link:hover,
.sg-nav-link:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
}

.sg-dropdown-menu {
    background: #171a21;
    border: 1px solid #2c313c;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.sg-dropdown-item {
    color: rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    transition: all 0.2s ease;
}

.sg-dropdown-item:hover,
.sg-dropdown-item:focus {
    background: rgba(211, 47, 47, 0.12);
    color: #ffffff;
}

.sg-portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #d63a3a 0%, #b92b2b 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.18);
    transition: all 0.2s ease;
}

.sg-portal-btn:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(211, 47, 47, 0.25);
}

.sg-social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.sg-social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.sg-socials {
    padding-left: 0.25rem;
}

/* Toggler */
.sg-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.14);
    padding: 0.45rem 0.65rem;
}

.sg-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.2);
}

/* Mobile spacing */
@media (max-width: 991.98px) {
    .sg-navbar .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .sg-navbar .navbar-nav {
        gap: 0.25rem;
    }

    .sg-portal-btn {
        width: 100%;
    }

    .sg-socials {
        justify-content: flex-start;
        padding-left: 0;
    }
}