/* INDEX LIST STYLES */
.section-index {
    padding: 40px 20px;
}

.index-grid {
    list-style: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.index-item {
    border-bottom: 1px dotted #ccc;
}

.index-item:last-child {
    border-bottom: none;
}

.index-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 800;
    transition: background 0.2s;
}

.index-link:hover {
    background: #f9f9f9;
}

.index-num-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 12px;
    flex-shrink: 0;
    line-height: 1;
}

.num-icon-only {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 1.4rem;
}

.num-circle-design {
    background: #f0f0f0;
    color: #888;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: 50%;
    border: 1px solid #eee;
}

.seat-tag {
    background: var(--accent-main);
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: auto;
    font-family: 'Outfit', sans-serif;
}

/* DETAIL CARD STYLES */
.ranking-list {
    padding: 0 20px 0px;
}

.card {
    background: #fff;
    border-radius: 25px;
    margin-bottom: 60px;
    overflow: hidden;
    border: 1px solid #efefef;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.card-visual {
    position: relative;
    height: 260px;
}

.card-visual.no-image {
    height: 70px;
    background: #f8f9fa;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    z-index: 5;
    color: #fff;
    line-height: 1;
    border-bottom-right-radius: 25px;
}

.badge-1 {
    background: linear-gradient(135deg, var(--badge-gold-start) 0%, var(--badge-gold-end) 100%);
}

.badge-2 {
    background: linear-gradient(135deg, var(--badge-silver-start) 0%, var(--badge-silver-end) 100%);
}

.badge-3 {
    background: linear-gradient(135deg, var(--badge-bronze-start) 0%, var(--badge-bronze-end) 100%);
}

.badge-normal {
    background-color: var(--badge-black);
    font-size: 1.8rem;
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.4;
    display: block;
    border-left: 5px solid var(--accent-main);
    padding-left: 15px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 25px;
}

.detail-list {
    background: var(--bg-gray);
    border-radius: 18px;
    padding: 20px;
    list-style: none;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.8rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    width: 90px;
    color: var(--accent-main);
    font-weight: 800;
    flex-shrink: 0;
}

.detail-val {
    font-weight: 500;
    color: #333;
}

.highlight-val {
    color: var(--accent-main);
    font-weight: 900;
    font-size: 0.9rem;
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6d9e6a;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: background 0.3s;
    gap: 10px;
}

.map-btn:hover {
    background: #5a8557;
}