.hall-of-fame-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 다크모드 적용 */
[data-theme="dark"] .hall-of-fame-container {
    color: #e9ecef;
}

.hall-of-fame-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.hall-of-fame-title {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
}

[data-theme="dark"] .hall-of-fame-title {
    color: #f8f9fa;
}

.hall-of-fame-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .hall-of-fame-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hall-of-fame-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hall-of-fame-grid {
        grid-template-columns: 1fr;
    }
}

.hall-of-fame-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .hall-of-fame-item {
    background: #2d3748;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hall-of-fame-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .hall-of-fame-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hall-of-fame-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.hall-of-fame-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hall-of-fame-item:hover .hall-of-fame-image {
    transform: scale(1.05);
}

.hall-of-fame-info {
    padding: 15px;
}

.hall-of-fame-date {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.badge-year, .badge-month {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-year {
    background: #e7f5ff;
    color: #1c7ed6;
}

.badge-month {
    background: #fff3e0;
    color: #f57c00;
}

.filter-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

[data-theme="dark"] .filter-section {
    background: #374151;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    display: inline-block;
    min-width: 50px;
}

[data-theme="dark"] .filter-label {
    color: #e9ecef;
}

.filter-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    padding: 6px 14px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
}

[data-theme="dark"] .filter-tag {
    border: 1px solid #4a5568;
    background: #2d3748;
    color: #e9ecef;
}

.filter-tag:hover {
    border-color: #667eea;
    color: #667eea;
    text-decoration: none;
}

[data-theme="dark"] .filter-tag:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-tag.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.hall-of-fame-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: #6c757d;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

[data-theme="dark"] .empty-state {
    color: #9ca3af;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
    white-space: nowrap;
}

.empty-state-subtext {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-create {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-create:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.loading-skeleton {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hall-of-fame-actions {
    margin-top: 10px;
    text-align: center;
}

.btn-delete-small {
    display: inline-block;
    padding: 6px 10px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-delete-small:hover {
    background: #dc3545;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}