.comicworld-zone {
    width: 100vw;  /* 화면 전체 너비 */
    margin-left: calc(-50vw + 50%);  /* 중앙에서 왼쪽으로 화면 절반만큼 */
    margin-right: calc(-50vw + 50%); /* 중앙에서 오른쪽으로 화면 절반만큼 */
    margin-bottom: 30px;
    padding: 40px 20px;
    
    background: linear-gradient(to bottom, 
        #dff2ff 0%,
        #ebf6fd 50%,
        #f8fcff 100%
    );
}

/* 내부 컨텐츠는 1200px로 제한 */
.zone-header {
    max-width: 1200px;
    margin: 0 auto 20px;
    text-align: center;
}

.zone-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #003380;
    margin: 0 0 8px 0;
}

.zone-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.fare-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    /* padding-top: 10px;   */
}

.fare-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #63cdff;
    border-radius: 25px;
    text-decoration: none;
    color: #003380;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    gap: 4px;
    margin-top: 15px;  /* 추가: 배지 공간 */
}

.fare-btn:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 205, 255, 0.3);
}

.fare-btn.active {
    background: #63cdff;
    color: #fff;
    border-color: #63cdff;
    box-shadow: 0 4px 12px rgba(99, 205, 255, 0.4);
}

.fare-icon {
    font-size: 24px;
    line-height: 1;
}

.fare-status-badge {
    position: absolute;
    top: -8px;  /* 버튼 위로 올리기 */
    right: 8px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    color: #fff;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);  /* 그림자 추가 */
}

.fare-status-badge.upcoming {
    background: #10B981;
}

.fare-status-badge.ongoing {
    background: #F59E0B;
}

.fare-status-badge.online {
    background: #3B82F6;
}

.fare-text {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.fare-date-text {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 500;
    text-align: center;
}

.fare-btn.active .fare-text,
.fare-btn.active .fare-date-text {
    color: #fff;
}

/* ===== 모바일 ===== */
@media (max-width: 768px) {
    .comicworld-zone {
        padding: 30px 15px;  /* 0 15px → 30px 15px */
        margin-bottom: 20px;
    }

    .zone-header {
        padding: 0;
        margin-bottom: 15px;
    }

    .zone-header h2 {
        font-size: 20px;
    }

    .zone-header p {
        font-size: 12px;
    }

    .fare-grid {
        gap: 10px;
    }

    .fare-btn {
        min-width: 120px;
        padding: 10px 16px;
    }

    .fare-icon {
        font-size: 20px;
    }

    .fare-text {
        font-size: 13px;
    }

    .fare-date-text {
        font-size: 10px;
    }

    .fare-status-badge {
        font-size: 8px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .zone-header h2 {
        font-size: 18px;
    }

    .fare-grid {
        gap: 8px;
    }

    .fare-btn {
        min-width: 100px;
        padding: 8px 12px;
    }

    .fare-icon {
        font-size: 18px;
    }

    .fare-text {
        font-size: 12px;
    }

    .fare-date-text {
        font-size: 9px;
    }
}