/* ════════════════════════════════════════════════════════
   KrazzFM Hörercharts - Schwarz/Grün Design
   ════════════════════════════════════════════════════════ */

/* Charts - Song Cards */
.hc-song-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.hc-song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.2);
    border-color: #32cd32;
}

.hc-song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.05) 0%, rgba(50, 205, 50, 0) 100%);
    pointer-events: none;
}

.hc-song-position {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(50, 205, 50, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #32cd32;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 2px solid #32cd32;
}

/* YouTube Button */
.hc-youtube-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0000;
    color: #fff;
    width: 60px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    text-decoration: none;
}

.hc-youtube-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    color: #fff;
}

.hc-song-content {
    margin-left: 70px;
    color: #fff;
}

.hc-song-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

.hc-song-artist {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

/* Song Begründung */
.hc-song-reason-wrapper {
    margin-bottom: 15px;
}

.hc-reason-toggle {
    background: rgba(50, 205, 50, 0.1);
    border: 1px solid rgba(50, 205, 50, 0.3);
    color: #32cd32;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hc-reason-toggle:hover {
    background: rgba(50, 205, 50, 0.2);
    border-color: #32cd32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.2);
}

.hc-reason-toggle i {
    font-size: 14px;
}

.hc-song-reason {
    margin-top: 12px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.05) 0%, rgba(50, 205, 50, 0.02) 100%);
    border-left: 3px solid #32cd32;
    border-radius: 8px;
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}

.hc-song-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hc-votes-badge {
    background: rgba(50, 205, 50, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #32cd32;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

.hc-votes-badge i {
    font-size: 16px;
}

.hc-btn-vote,
.hc-btn-fav {
    background: #32cd32;
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hc-btn-vote:hover {
    background: #28a428;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.hc-btn-vote:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    background: #555;
    color: #999;
}

.hc-btn-fav {
    background: #2d2d2d;
    color: #fff;
    border: 1px solid #444;
}

.hc-btn-fav:hover {
    background: #3a3a3a;
    border-color: #666;
}

.hc-btn-fav.active {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.hc-btn-fav.active:hover {
    background: #c0392b;
}

/* Top 3 - Grün-Abstufungen */
.hc-song-card.rank-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #32cd32;
    box-shadow: 0 4px 20px rgba(50, 205, 50, 0.3);
}

.hc-song-card.rank-1 .hc-song-position {
    background: #32cd32;
    color: #000;
    border-color: #32cd32;
}

.hc-song-card.rank-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(50, 205, 50, 0.7);
}

.hc-song-card.rank-2 .hc-song-position {
    background: rgba(50, 205, 50, 0.7);
    border-color: rgba(50, 205, 50, 0.7);
}

.hc-song-card.rank-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(50, 205, 50, 0.4);
}

.hc-song-card.rank-3 .hc-song-position {
    background: rgba(50, 205, 50, 0.4);
    border-color: rgba(50, 205, 50, 0.4);
}

/* Favoriten Liste */
.hc-fav-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.hc-fav-item:hover {
    border-color: #32cd32;
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.15);
}

.hc-fav-info {
    flex: 1;
}

.hc-fav-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.hc-fav-artist {
    color: #aaa;
    font-size: 14px;
}

.hc-fav-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Archiv Cards */
.hc-archive-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.hc-archive-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.2);
    text-decoration: none;
    color: #fff;
    border-color: #32cd32;
}

.hc-archive-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #32cd32;
}

.hc-archive-stats {
    font-size: 14px;
    color: #aaa;
}

/* Submit Form */
.hc-submit-form {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.hc-submit-form .form-group {
    margin-bottom: 25px;
}

.hc-submit-form label {
    font-weight: 600;
    color: #32cd32;
    margin-bottom: 8px;
    display: block;
}

.hc-submit-form input {
    background: #2d2d2d;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #fff;
}

.hc-submit-form input:focus {
    border-color: #32cd32;
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.2);
    outline: none;
}

.hc-submit-form input::placeholder {
    color: #666;
}

.hc-submit-btn {
    background: #32cd32;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
    background: #28a428;
}

/* Responsive */
@media (max-width: 768px) {
    .hc-song-card {
        padding: 15px;
    }
    
    .hc-song-content {
        margin-left: 60px;
    }
    
    .hc-song-position {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hc-song-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Alerts & Messages */
.alert {
    border-radius: 10px;
    border: 1px solid;
}

.alert-warning {
    background: #2d2d2d;
    color: #ffa500;
    border-color: #ffa500;
}

.alert-info {
    background: #2d2d2d;
    color: #32cd32;
    border-color: #32cd32;
}

.alert-success {
    background: #2d2d2d;
    color: #32cd32;
    border-color: #32cd32;
}

.alert-danger {
    background: #2d2d2d;
    color: #e74c3c;
    border-color: #e74c3c;
}

.alert-danger {
    background: #2d2d2d;
    color: #e74c3c;
    border-color: #e74c3c;
}

/* Voting Status Box */
.hc-voting-status {
    margin-bottom: 25px;
}

.hc-voting-status .alert {
    text-align: center;
    font-size: 15px;
    padding: 15px 20px;
}

.hc-voting-status .alert strong {
    font-weight: 700;
}

/* Thema-Box */
.hc-theme-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #32cd32;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hc-theme-icon {
    font-size: 32px;
    color: #32cd32;
    flex-shrink: 0;
}

.hc-theme-content {
    flex: 1;
}

.hc-theme-label {
    color: #32cd32;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hc-theme-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.hc-theme-none {
    justify-content: center;
    background: #2d2d2d;
    border-color: #444;
    color: #999;
    font-style: italic;
}

/* Labels */
.label {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.label-warning {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.label-success {
    background: rgba(50, 205, 50, 0.2);
    color: #32cd32;
    border: 1px solid #32cd32;
}

.label-danger {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.label-default {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
    border: 1px solid #444;
}

/* Body Background (optional - falls gewünscht) */
body {
    background: #0d0d0d;
}

/* ════════════════════════════════════════════════════════
   TAB NAVIGATION (eigene Klassen, kein Bootstrap)
   ════════════════════════════════════════════════════════ */
.hc-tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hc-tab-button {
    flex: 1;
    min-width: 150px;
    background: #2d2d2d;
    border: 2px solid #444;
    color: #aaa;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hc-tab-button i {
    font-size: 18px;
}

.hc-tab-button:hover {
    background: #3a3a3a;
    border-color: #32cd32;
    color: #32cd32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.2);
}

.hc-tab-button.active {
    background: #32cd32;
    border-color: #32cd32;
    color: #000;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.hc-tab-button.active:hover {
    background: #28a428;
    transform: translateY(-2px);
}

/* Responsive Tab-Buttons */
@media (max-width: 768px) {
    .hc-tab-nav {
        flex-direction: column;
    }
    
    .hc-tab-button {
        width: 100%;
        min-width: auto;
    }
}

