.hot-main {
    padding-top: 20px;
    padding-bottom: 26px;
}

.hot-hero {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--custom-section-border, #dcc9ba);
    border-radius: 12px;
    background: var(--custom-panel-bg, linear-gradient(135deg, #fdf3e7 0%, #f7e8d0 100%));
    padding: 16px;
    margin-bottom: 14px;
}

.hot-hero h1 {
    margin: 0 0 6px;
    color: #6b4f4f;
}

.hot-hero p {
    margin: 0;
    color: #8b7355;
}

.hot-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, auto));
    gap: 10px;
    align-items: end;
}

.hot-controls label {
    display: grid;
    gap: 6px;
    color: #6b4f4f;
    font-weight: 700;
    font-size: 0.9rem;
}

.hot-controls select {
    border: 1px solid #dcc9ba;
    border-radius: 8px;
    background: #fffaf4;
    color: #4a3f35;
    padding: 8px 10px;
}

.hot-layout {
    display: grid;
    grid-template-columns: minmax(420px, 1.4fr) minmax(220px, 0.7fr);
    gap: 14px;
}

.hot-feed-panel,
.hot-side-card {
    border: 1px solid var(--custom-section-border, #dcc9ba);
    border-radius: 12px;
    background: var(--custom-panel-bg, #fdf3e7);
    box-shadow: 0 8px 20px rgba(74, 63, 53, 0.08);
}

.hot-feed-panel {
    padding: 14px;
}

.hot-feed-head h2 {
    margin: 0;
    color: #6b4f4f;
}

.hot-feed-head p {
    margin: 4px 0 0;
    color: #8b7355;
    font-size: 0.9rem;
}

.hot-feed-list {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.hot-item {
    display: grid;
    grid-template-columns: 42px 170px 1fr;
    gap: 10px;
    border: 1px solid var(--custom-section-border, #e6d7c9);
    border-radius: 10px;
    background: var(--custom-card-bg, #fffaf4);
    padding: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.hot-item:hover {
    transform: translateY(-1px);
    border-color: #c9b39d;
    box-shadow: 0 8px 18px rgba(74, 63, 53, 0.1);
}

.hot-rank {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #8b4513;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 6px;
}

.hot-rank.top {
    background: #b54a22;
}

.hot-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: 1px solid #dcc9ba;
    object-fit: cover;
    background: #efe2d2;
}

.hot-cover.is-video {
    background: #1f1f1f;
}

.hot-item-title {
    margin: 0;
    color: #6b4f4f;
    font-size: 1rem;
    line-height: 1.35;
}

.hot-item-meta {
    margin: 6px 0;
    color: #8b7355;
    font-size: 0.88rem;
}

.hot-item-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hot-chip {
    border: 1px solid #dcc9ba;
    border-radius: 999px;
    padding: 2px 8px;
    background: #f7e8d0;
    color: #6b4f4f;
    font-size: 0.8rem;
    font-weight: 700;
}

.hot-side-panel {
    display: grid;
    gap: 10px;
    align-content: start;
}

.hot-side-card {
    padding: 12px;
}

.hot-side-card h3 {
    margin: 0 0 8px;
    color: var(--custom-primary-text, #6b4f4f);
}

.hot-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.hot-side-list li {
    border: 1px solid var(--custom-section-border, #e6d7c9);
    border-radius: 8px;
    padding: 8px;
    background: var(--custom-card-bg, #fffaf4);
    color: var(--custom-primary-text, #6b4f4f);
    font-size: 0.9rem;
}

.hot-empty {
    border: 1px dashed #d3bca9;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    color: #8b7355;
    background: #fffaf4;
}

[data-theme="dark"] .hot-hero,
[data-theme="dark"] .hot-feed-panel,
[data-theme="dark"] .hot-side-card,
[data-theme="dark"] .hot-item,
[data-theme="dark"] .hot-side-list li,
[data-theme="dark"] .hot-empty {
    background: hsl(275, 41%, 19%);
    border-color: #444;
    color: antiquewhite;
}

[data-theme="dark"] .hot-hero p,
[data-theme="dark"] .hot-feed-head p,
[data-theme="dark"] .hot-item-meta {
    color: #d7d1c8;
}

[data-theme="dark"] .hot-controls select {
    background: hsl(278, 72%, 17%);
    border-color: #5f516d;
    color: antiquewhite;
}

[data-theme="dark"] .hot-chip {
    background: rgba(255, 250, 235, 0.12);
    color: antiquewhite;
    border-color: #5a4a66;
}

@media (max-width: 980px) {
    .hot-hero {
        flex-direction: column;
    }

    .hot-controls {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .hot-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .hot-item {
        grid-template-columns: 34px 1fr;
    }

    .hot-item-cover-wrap {
        grid-column: 1 / -1;
    }

    .hot-controls {
        grid-template-columns: 1fr;
    }
}