
:root { 
    --sc-yellow: #ffbf00; 
    --sc-black: #000000; 
    --sc-card: #111111; 
    --sc-border: #222222;
}

body { 
    background-color: var(--sc-black); 
    color: #ffffff; 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
}

/* Header & Hero */
.hero { 
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%); 
    padding: 60px 0; 
    border-bottom: 4px solid var(--sc-yellow); 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero h1 { font-weight: 900; text-transform: uppercase; margin-bottom: 0; font-size: 3.5rem; letter-spacing: -1px; }
.hero h1 span { color: var(--sc-yellow); }
.btn-header { padding: 6px 18px; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; }

/* Ranking Cards */
.rank-card { 
    background: var(--sc-card); 
    border: 1px solid var(--sc-border); 
    border-radius: 12px; 
    margin-bottom: 20px; 
    padding: 25px; 
    display: flex; 
    align-items: center; 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.rank-card:hover { 
    border-color: var(--sc-yellow); 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 191, 0, 0.05);
}

.rank-number { 
    font-size: 3rem; 
    font-weight: 900; 
    color: #1a1a1a; 
    min-width: 100px; 
    text-align: center; 
    font-style: italic;
}
.radio-item:nth-child(1) .rank-number { color: var(--sc-yellow); text-shadow: 0 0 15px rgba(255, 191, 0, 0.3); }
.radio-item:nth-child(2) .rank-number { color: #c0c0c0; }
.radio-item:nth-child(3) .rank-number { color: #cd7f32; }

/* Banner & Info */
.radio-media-group { display: flex; flex-direction: column; width: 468px; flex-shrink: 0; }
.banner-wrap { 
    width: 468px; 
    height: 60px; 
    background: #050505; 
    border: 1px solid #222; 
    border-radius: 4px; 
    overflow: hidden; 
    display: block;
}
.banner-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.banner-wrap:hover img { transform: scale(1.02); }

.text-wrap { margin-top: 10px; padding: 0 5px; }
.radio-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.radio-small-desc { font-size: 0.8rem; color: #777; line-height: 1.4; margin-top: 4px; font-weight: 400; }

/* Stats */
.stats-center { flex-grow: 1; display: flex; justify-content: center; gap: 20px; }
.stat-badge { 
    text-align: center; 
    background: #080808; 
    border: 1px solid #1a1a1a; 
    padding: 10px 15px; 
    border-radius: 10px; 
    min-width: 95px;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
}
.stat-badge label { display: block; font-size: 0.65rem; color: var(--sc-yellow); font-weight: 900; text-transform: uppercase; margin-bottom: 3px; }
.stat-badge span { font-size: 1.2rem; font-weight: 800; color: #fff; font-family: 'Courier New', monospace; }

.info-badge-box { text-decoration: none; transition: 0.3s; border: 1px solid #222; }
.info-badge-box:hover { border-color: var(--sc-yellow); background: #151515; }
.info-badge-box i { font-size: 1.4rem; color: #444; transition: 0.3s; }
.info-badge-box:hover i { color: var(--sc-yellow); transform: rotate(15deg); }

/* Actions */
.action-container { padding-left: 25px; display: flex; gap: 15px; align-items: center; }
.btn-play-circle { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background: #1a1a1a; 
    color: #fff;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid #222; 
    font-size: 1.6rem; 
    transition: 0.3s;
    cursor: pointer;
}
.btn-play-circle:hover { background: #fff; color: #000; border-color: #fff; transform: scale(1.1); box-shadow: 0 0 20px rgba(255,255,255,0.2); }

.btn-vote-main {
    background: var(--sc-yellow); 
    color: #000; 
    font-weight: 900;
    padding: 12px 28px; 
    border-radius: 50px; 
    border: none;
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 1.5px;
    transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}
.btn-vote-main:hover { 
    background: #fff; 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4); 
    color: #000; 
}

/* Footer */
.footer-area { 
    background: #050505; 
    padding: 60px 0; 
    border-top: 1px solid #111; 
    margin-top: auto; 
    text-align: center; 
}
.countdown-timer { 
    font-family: 'Courier New', monospace; 
    color: var(--sc-yellow); 
    font-size: 1.4rem; 
    font-weight: 900;
    border: 2px solid #222; 
    padding: 10px 25px; 
    border-radius: 50px; 
    background: #000; 
    display: inline-block;
    box-shadow: inset 0 0 10px rgba(255,191,0,0.1);
}

.global-stats-footer { margin-top: 40px; padding-top: 30px; border-top: 1px dashed #1a1a1a; }
.g-stat-item { display: inline-block; margin: 0 25px; text-align: left; }
.g-stat-item label { display: block; font-size: 0.7rem; color: #444; text-transform: uppercase; font-weight: 900; margin-bottom: 2px; }
.g-stat-item span { color: #fff; font-weight: 700; font-size: 1.3rem; border-left: 3px solid var(--sc-yellow); padding-left: 10px; }

/* Dashboard spezifisches Design */
.tester-box { 
    background: #0a0a0a; 
    border: 1px solid #222; 
    border-radius: 15px; 
    padding: 20px; 
    margin-bottom: 20px; 
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}
.btn-tester-play { 
    background: var(--sc-yellow); 
    color: #000; 
    border: none; 
    font-weight: 900; 
    border-radius: 12px; 
    padding: 10px 20px; 
    font-size: 0.85rem; 
    transition: 0.2s;
}
.btn-tester-play:hover { background: #fff; }

.code-container { position: relative; background: #000; border: 1px solid #222; border-radius: 8px; overflow: hidden; margin-top: 10px; }
.code-well { 
    color: #00ff41; 
    font-family: 'Consolas', monospace; 
    padding: 20px 60px 20px 20px; 
    font-size: 0.75rem; 
    word-break: break-all; 
    min-height: 60px;
    line-height: 1.5;
}
.btn-copy { 
    position: absolute; top: 10px; right: 10px; background: #1a1a1a; color: #fff; 
    border: 1px solid #333; padding: 6px 10px; border-radius: 6px; font-size: 0.9rem;
    transition: 0.2s;
}
.btn-copy:hover { background: var(--sc-yellow); color: #000; border-color: var(--sc-yellow); }

/* Responsive Fixes */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.2rem; }
    .rank-card { flex-direction: column; text-align: center; padding: 30px 15px; }
    .radio-media-group { width: 100%; align-items: center; margin-bottom: 20px; }
    .banner-wrap { width: 100%; max-width: 468px; }
    .stats-center { margin-bottom: 20px; flex-wrap: wrap; width: 100%; }
    .action-container { padding-left: 0; width: 100%; justify-content: center; }
    .rank-number { min-width: auto; margin-bottom: 10px; font-size: 2.5rem; }
}