.today-page {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}

.today-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.today-card {
    background: #111;
    border: 1px solid #222;
    border-top: 3px solid #222;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.25s ease;
}

.today-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.today-card.excellent {
    border-top-color: #5dff8b;
}

.today-card.good {
    border-top-color: #58b7ff;
}

.today-card.fair {
    border-top-color: #ffd45a;
}

.today-card.poor {
    border-top-color: #ff6b6b;
}

#today-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.overall-score {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.overall-summary {
    margin-bottom: 1rem;
}

.overview-grid,
.conditions-grid,
.species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.overview-item,
.conditions-grid div,
.species-item {
    background: #151515;
    padding: 0.75rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overview-item {
    min-height: 90px;
}

.overview-item strong,
.conditions-grid strong,
.species-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #d0d0d0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overview-item span,
.conditions-grid span,
.species-item span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.segment-score {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 1rem 0;
}

.outlook-excellent {
    color: #5dff8b;
    font-weight: 800;
}

.outlook-good {
    color: #58b7ff;
    font-weight: 800;
}

.outlook-fair {
    color: #ffd45a;
    font-weight: 800;
}

.outlook-poor {
    color: #ff6b6b;
    font-weight: 800;
}

.status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem;
}

.badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.badge-clear {
    background: rgba(88, 183, 255, 0.15);
    color: #58b7ff;
}

.badge-wind {
    background: rgba(93, 255, 139, 0.15);
    color: #5dff8b;
}

.badge-temp {
    background: rgba(255, 212, 90, 0.15);
    color: #ffd45a;
}

.hatch-tags,
.fly-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hatch-tag {
    background: #163d2b;
    color: #7fffb0;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    border: 1px solid #24553c;
}

.fly-tag {
    background: #2a1b0d;
    color: #ffcb7a;
    border: 1px solid #5b3c18;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.today-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
    font-size: 1rem;
    color: #f3f3f3;
}

.today-card p {
    line-height: 1.55;
    color: #d8d8d8;
}

.today-card ul {
    margin-top: 0.5rem;
    padding-left: 1.1rem;
}

.today-card li {
    margin-bottom: 0.35rem;
}

.weather-summary,
.local-notes,
.hatch-summary,
.history-section,
.regulations-section,
.flies-section,
.techniques-section,
.species-section,
.hatch-section {
    margin-top: 1.4rem;
}

.local-notes {
    padding-top: 1rem;
    border-top: 1px solid #222;
}

.hatch-summary {
    padding-top: 0.75rem;
    border-top: 1px solid #222;
    color: #cfcfcf;
    line-height: 1.5;
}

.local-notes p,
.weather-summary p,
.hatch-summary p {
    color: #cccccc;
    line-height: 1.6;
}

.regulation-warning {
    background: #3a2a12;
    border: 1px solid #6d4c16;
    color: #ffd27a;
    padding: 1rem;
    border-radius: 10px;
    line-height: 1.5;
}

.history-match {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 0.75rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.45;
}

.history-match strong {
    color: #7fd7ff;
}

@media (max-width: 768px) {
    .today-page {
        padding: 1rem;
    }

    #today-segments {
        grid-template-columns: 1fr;
    }

    .overview-grid,
    .conditions-grid,
    .species-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overall-score {
        font-size: 1.6rem;
    }

    .today-card {
        padding: 1rem;
    }
}

@media (max-width: 460px) {
    .overview-grid,
    .conditions-grid,
    .species-grid {
        grid-template-columns: 1fr;
    }
}

.reg-alert {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.reg-alert strong {
    color: #fff0b3;
    display: block;
    margin-bottom: 0.35rem;
}

.expand-section {
    margin-top: 1.5rem;
    border-top: 1px solid #222;
    padding-top: 1rem;
}

.expand-section summary {
    cursor: pointer;
    font-weight: 700;
    color: #f3f3f3;
    list-style: none;
    user-select: none;
}

.expand-section summary::-webkit-details-marker {
    display: none;
}

.expand-section summary::after {
    content: '+';
    float: right;
    color: #888;
}

.expand-section[open] summary::after {
    content: '-';
}

.expand-section summary:hover {
    color: #7fd7ff;
}

.history-score {
    font-size: 0.8rem;
    color: #7fd7ff;
    font-weight: 700;
    margin: 0.35rem 0;
}

.section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.section-nav a {
    background: #151515;
    color: #7fd7ff;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.section-nav a:hover {
    background: #1f1f1f;
    color: #ffffff;
}

.season-status {
    margin-top: 1rem;
}

.regulation-season {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.regulation-season.open {
    background: rgba(70, 190, 110, 0.15);
    color: #7dff9d;
    border: 1px solid rgba(70, 190, 110, 0.25);
}

.regulation-season.upcoming {
    background: rgba(255, 210, 90, 0.12);
    color: #ffd45a;
    border: 1px solid rgba(255, 210, 90, 0.2);
}

.regulation-season.closed {
    background: rgba(255, 90, 90, 0.12);
    color: #ff7b7b;
    border: 1px solid rgba(255, 90, 90, 0.2);
}

.regulation-season.opening-soon {
    background: rgba(255, 160, 60, 0.15);
    color: #ffb15a;
    border: 1px solid rgba(255, 160, 60, 0.25);
}


.season-status {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.regulation-season strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.8;
}

.regulation-season {
    line-height: 1.4;
}


.season-main-text {
    margin-top: 0.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.season-message {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.45;
    opacity: 0.82;
}

.season-status {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.regulation-season strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.8;
}

.season-note {
    font-size: 0.72rem;
    line-height: 1.35;
    opacity: 0.78;
    margin-top: 6px;
    color: #c7c7c7;
}

.gear-rule-item {
    display: inline-block;
    margin: 4px 4px 0 0;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,180,0,.08);
    border: 1px solid rgba(255,180,0,.18);
    font-size: 0.72rem;
    color: #ffcc66;
}

.closure-item {
    background: rgba(255,70,70,.08);
    border: 1px solid rgba(255,70,70,.25);
    color: #ff8b8b;
    padding: 10px;
    border-radius: 10px;
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 1.35;
}

.regulations-disclaimer {
    margin-top: 14px;
    font-size: 0.65rem;
    line-height: 1.35;
    color: rgba(255,255,255,.45);
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 10px;
}

.seo-intro,
.section-overview-text,
.related-resources,
.last-updated {
    max-width: 1100px;
    margin: 0 auto 22px auto;
    padding: 0 1rem;
}

.seo-intro {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255,255,255,.75);
}

.section-overview-text {
    margin-top: 28px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.78);
}

.section-overview-text h2,
.related-resources h2 {
    margin-bottom: 10px;
}

.related-resources {
    margin-top: 26px;
}

.related-resources a {
    display: inline-block;
    margin: 4px 10px 4px 0;
}

.today-hero {
    max-width: 900px;
    margin: 0 auto 28px auto;
    text-align: center;
    padding: 0 1rem;
}

.today-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.seo-intro {
    max-width: 760px;
    margin: 14px auto 0 auto;
}

.section-overview-text {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 26px;
}

.last-updated {
    text-align: center;
    margin: 28px 0 10px 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,.55);
}

.related-resources {
    text-align: center;
    margin: 0 auto 40px auto;
    max-width: 900px;
}

.related-resources h2 {
    margin-bottom: 12px;
}

.related-resources a {
    display: inline-block;
    margin: 5px 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,180,0,.08);
    border: 1px solid rgba(255,180,0,.18);
    color: #ffcc66;
    text-decoration: none;
    font-size: 0.8rem;
}

.season-note {
    font-size: 0.66rem;
    line-height: 1.35;
    color: rgba(255,255,255,.55);
    margin-top: 6px;
}

.regulations-expand {
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 10px;
}

.regulations-expand summary {
    cursor: pointer;
    font-weight: 700;
    color: #d7d7d7;
    list-style: none;
    position: relative;
    padding-right: 18px;
}

.regulations-expand summary::-webkit-details-marker {
    display: none;
}

.regulations-expand summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255,255,255,.55);
    transition: transform .2s ease;
}

.regulations-expand[open] summary::after {
    content: '-';
}

.regulations-section {
    margin-top: 14px;
}

@media (max-width: 900px) {

    #today-segments {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .today-card {
        width: 100%;
        min-width: 0;
    }

}

@media (max-width: 700px) {

    .today-hero h1 {
        font-size: 1.9rem;
        line-height: 1.15;
    }

    .today-subtitle {
        font-size: 0.92rem;
    }

    .seo-intro,
    .section-overview-text {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .today-card h2 {
        font-size: 1.35rem;
    }

}

@media (max-width: 700px) {

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

}

.fly-tags,
.hatch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.section-nav {
    position: sticky;
    top: 0;
    z-index: 50;

    backdrop-filter: blur(10px);
    background: rgba(5,10,20,.82);

    padding: 10px;
}


@media (max-width: 700px) {

    .section-nav {
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        gap: 8px;

        scrollbar-width: none;
    }

    .section-nav::-webkit-scrollbar {
        display: none;
    }

}

@media (max-width: 700px) {

    .season-note {
        font-size: 0.62rem;
    }

    .gear-rule-item,
    .closure-item {
        font-size: 0.68rem;
    }

}

.expand-section summary,
.regulations-expand summary {
    padding: 12px 0;
}
