:root {
    --border-color: #e0e0e0;
    --text-main: #000000;
    --text-muted: #888888;
    --bg: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    padding: 40px 5%;
    font-size: 12px;
}

/* Header & Stats */
header { margin-bottom: 50px; }
.breadcrumb { font-weight: 700; font-size: 10px; letter-spacing: 1px; margin-bottom: 20px; }
.breadcrumb span { color: var(--text-muted); font-weight: 400; }

.stats-bar {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.stat-item .label { font-size: 8px; color: var(--text-muted); display: block; margin-bottom: 5px; letter-spacing: 1px; }
.stat-item .value { font-size: 24px; font-weight: 400; }
.stat-item .sub { font-size: 10px; color: var(--text-muted); text-transform: uppercase; margin-left: 2px; }

/* Sections */
section { margin-bottom: 60px; }
.section-header {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    text-transform: uppercase;
}
.section-header span { color: var(--text-muted); margin-left: 10px; }

/* Grid System */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
}

.card { position: relative; cursor: pointer; }
.cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #cccccc;
    font-weight: 300;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}
.cover-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.card:hover .cover-placeholder { border-color: var(--text-main); }

.card-info .title { font-weight: 700; font-size: 11px; display: block; margin-bottom: 2px; }
.card-info .meta { color: var(--text-muted); font-size: 10px; }
.score { position: absolute; top: 5px; right: 8px; font-size: 10px; font-weight: 700; color: var(--text-muted); }

/* Podcast List */
.list { display: flex; flex-direction: column; }
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #f4f4f4;
}
.list-item:hover { background: #fafafa; }
.p-main { display: flex; align-items: center; gap: 15px; }
.p-square { width: 12px; height: 12px; border: 1px solid #ccc; }
.p-info .p-title { font-weight: 700; display: block; }
.p-info .p-author { font-size: 9px; color: var(--text-muted); text-transform: uppercase; }
.p-meta { font-size: 10px; color: var(--text-muted); display: flex; gap: 20px; }

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 9px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}