.logo-area {
    text-decoration: none;
    color: inherit;
}

.nav-links a.active {
    background: #ffedd5;
    color: #c26a1a;
}

.hot-hero {
    background: linear-gradient(125deg, #FFE6C7, #FFD0A4, #FFBC80);
    border-radius: 48px;
    padding: 2.2rem 1.6rem;
    margin: 10px 0 24px;
    text-align: center;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
}

.hot-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b2a1f;
}

.hot-hero p {
    margin-top: 10px;
    color: #6f553b;
    font-size: 1.05rem;
}

.hot-toolbar {
    background: white;
    border-radius: 36px;
    padding: 18px 22px;
    margin-bottom: 24px;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ffe2be;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 12px;
    z-index: 20;
    backdrop-filter: blur(8px);
}

.hot-toolbar-right {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    justify-content: flex-end;
}

.hot-view-group {
    margin: 0;
}

.hot-date-picker label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #876b4f;
    margin-bottom: 8px;
}

.date-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.date-controls input[type="date"] {
    border: 1px solid #ffd7a8;
    background: #fffaf2;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 1rem;
    color: #3b2a1f;
    font-weight: 600;
    outline: none;
}

.date-controls input[type="date"]:focus {
    border-color: #E67E22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.date-nav-btn,
.today-btn {
    border: none;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.date-nav-btn {
    width: 40px;
    height: 40px;
    background: #ffedd5;
    color: #c26a1a;
    font-size: 1.4rem;
    line-height: 1;
}

.date-nav-btn:hover,
.today-btn:hover {
    transform: translateY(-1px);
}

.date-nav-btn:disabled,
.today-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.today-btn {
    padding: 10px 18px;
    background: #E67E22;
    color: white;
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.2);
}

.hot-meta {
    font-weight: 600;
    color: #876b4f;
    font-size: 0.95rem;
}

.hot-list-wrap {
    min-height: 40vh;
}

.hot-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.day-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 4px;
    color: #b45f1b;
    font-weight: 700;
}

.day-divider::before,
.day-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd0a4, transparent);
}

.hot-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: white;
    border-radius: 28px;
    padding: 14px;
    border: 1px solid #ffe2be;
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hot-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -12px rgba(230, 126, 34, 0.25);
}

.hot-main {
    display: flex;
    gap: 14px;
    align-items: stretch;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.read-origin {
    flex-shrink: 0;
    align-self: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #E67E22;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.2);
}

.read-origin:hover {
    background: #d35400;
}

.hot-rank {
    min-width: 42px;
    height: 42px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: #fff3e4;
    color: #c26a1a;
    flex-shrink: 0;
}

.hot-rank.top1 {
    background: linear-gradient(135deg, #FFB347, #E67E22);
    color: white;
}

.hot-rank.top2 {
    background: linear-gradient(135deg, #FFD0A4, #F4A261);
    color: #3b2a1f;
}

.hot-rank.top3 {
    background: linear-gradient(135deg, #ffe8c8, #ffc98a);
    color: #3b2a1f;
}

.hot-thumb {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    object-fit: cover;
    background: #ffe3c6;
    flex-shrink: 0;
}

.hot-thumb.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.hot-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.hot-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
    color: #2c241a;
}

.hot-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    font-size: 0.85rem;
    color: #876b4f;
}

.hot-site {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffaf2;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 600;
}

.site-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E67E22;
}

.hot-extra,
.hot-views {
    font-weight: 600;
}

.hot-status {
    text-align: center;
    padding: 28px 12px 12px;
    color: #876b4f;
    font-weight: 600;
}

.hot-status.error {
    color: #c0392b;
}

.hot-status.done {
    color: #a07855;
}

.load-sentinel {
    height: 1px;
}

.hot-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 36px;
    border: 1px dashed #ffd7a8;
    color: #876b4f;
}

@media (max-width: 800px) {
    .hot-hero h1 {
        font-size: 1.7rem;
    }

    .hot-toolbar {
        position: static;
        border-radius: 28px;
    }

    .hot-item {
        border-radius: 22px;
        flex-wrap: wrap;
    }

    .hot-main {
        width: 100%;
    }

    .read-origin {
        margin-left: auto;
    }

    .hot-thumb {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .hot-title {
        font-size: 0.98rem;
    }
}
