/* 기본 배경 및 폰트 */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #0f172a, #1e293b);
    color: #e2e8f0;
}

/* 상단 타이틀 영역 */
.hero {
    background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
    text-align: center;
    padding: 60px 20px;
    color: #00f0ff;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero h1 {
    font-size: 2.5rem;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: #a0aec0;
}

/* 날짜 선택 캘린더 */

.date-swiper {
    width: 90%;
    padding: 20px 0;
    margin: 0 auto;
}

.swiper-slide {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 12px 0;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    width: 80px;
    border: 1px solid #334155;
    transition: all 0.2s ease-in-out;
}

.swiper-slide:hover {
    background-color: #334155;
    transform: scale(1.05);
}

.swiper-slide.active {
    background-color: #8b5cf6;
    color: white;
    box-shadow: 0 0 8px #8b5cf6;
    border: 1px solid #a78bfa;
}
<!-- Swiper 스타일 -->

 .swiper.date-swiper {
     width: 90%;
     padding: 20px 0;
     margin: 0 auto;
 }

.swiper-slide {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 10px 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    width: 80px;
    border: 1px solid #334155;
    transition: all 0.2s ease-in-out;
}

.swiper-slide:hover {
    background-color: #334155;
    transform: scale(1.05);
}

.swiper-slide.active {
    background-color: #8b5cf6;
    color: white;
    box-shadow: 0 0 8px #8b5cf6;
    border: 1px solid #a78bfa;
}

/* 메인 컨테이너 */
.container {
    padding: 0 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 경기 목록 전체 */
.schedule-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 개별 경기 */
.game-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px;
    align-items: center;
    padding: 16px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.08);
    transition: background 0.3s;
}

.game-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.time {
    color: #00f0ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.matchup {
    text-align: center;
    font-size: 1.05rem;
    color: #e2e8f0;
    font-weight: 500;
}

.matchup .vs {
    margin: 0 8px;
    color: #94a3b8;
}

.team {
    color: #e2e8f0;
}

.stadium {
    text-align: right;
    color: #a0aec0;
    font-size: 0.95rem;
}

/* 푸터 */
footer {
    text-align: center;
    padding: 20px;
    color: #94a3b8;
    background-color: #0f172a;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.back-btn {
    text-align: center;
    margin: 40px 0 20px 0;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 999px; /* pill shape */
    background: linear-gradient(to right, #00f0ff, #8b5cf6);
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    border: none;
    text-align: center;
    /* ✅ 추가 */
    width: auto;
}

/* 🟣 호버 시 버튼만! */
.btn:hover {
    background: linear-gradient(to right, #8b5cf6, #00f0ff);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}


.team-logo {
    width: 20px;
    height: 20px;
    margin: 0 6px;
    vertical-align: middle;
    object-fit: contain;
}
.matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.matchup .team {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #e2e8f0;
}
.matchup .vs {
    margin: 0 10px;
    color: #94a3b8;
}
.stadium-info {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 4px;
}

