


.format-section {
    background-color: var(--color-white);
}

.format-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.format-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.ranking-section {
    background-color: var(--color-light);
}

.ranking-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ranking-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.archive-section {
    background-color: var(--color-white);
}

.archive-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.archive-item {
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.archive-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.archive-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.archive-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}
