/* Styly pro karty Síně slávy (sin_slavy.php). */
:root {
    --hof-primary: #007aff;
    --hof-secondary: #ffffff;
    --hof-card-bg: rgba(15, 20, 30, 0.4);
    --hof-card-border: rgba(255, 255, 255, 0.08);
}

.hof-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hof-card {
    display: flex;
    background: var(--hof-card-bg);
    border: 1px solid var(--hof-card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hof-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 122, 255, 0.3);
}

.hof-left {
    width: 300px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--hof-card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
}

.hof-avatar-frame {
    width: 130px;
    height: 220px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--hof-primary);
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 15px;
}

.hof-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hof-nickname {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--hof-secondary);
    text-align: center;
}

.hof-rank {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

.hof-stats {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hof-stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--hof-card-border);
}

.hof-stat-icon {
    color: var(--hof-primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.hof-stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hof-stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.hof-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.hof-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
    padding-left: 20px;
    border-left: 3px solid var(--hof-primary);
    font-weight: 500;
    line-height: 1.6;
}

.hof-story {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.hof-timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.hof-timeline-title i {
    color: var(--hof-primary);
}

.hof-timeline {
    position: relative;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hof-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.hof-timeline-item {
    position: relative;
}

.hof-timeline-dot {
    position: absolute;
    left: -24px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--hof-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 122, 255, 0.6);
}

.hof-timeline-date {
    font-size: 0.75rem;
    color: var(--hof-primary);
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hof-timeline-content {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hof-card {
        flex-direction: column;
    }
    .hof-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--hof-card-border);
        padding: 2.5rem 1.5rem;
    }
    .hof-right {
        padding: 2.5rem 1.5rem;
    }
    .hof-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hof-stat-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 500px) {
    .hof-stats {
        flex-direction: column;
    }
    .hof-stat-item {
        width: 100%;
    }
    .hof-avatar-frame {
        width: 120px;
        height: 200px;
    }
}
