.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;
}