/* =========================================
   1. 기본 설정 및 변수 (Variables & Reset)
   ========================================= */
:root {
    --bg-dark: #0f172a;
    --card-bg: #1e293b;
    --accent-blue: #2563eb;
    --accent-sky: #38bdf8;
    --text-gray: #94a3b8;
    --gold: #fbbf24;
    --silver: #e2e8f0;
    --bronze: #b45309;
    
    /* 둥근 모서리 변수 */
    --radius-lg: 24px;
    --radius-md: 16px;
}

* { box-sizing: border-box; }
body {
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #020617 100%);
    color: white;
    font-family: 'Pretendard', sans-serif;
    margin: 0; 
    padding-bottom: 80px;
    min-height: 100vh;
    overflow-x: hidden; /* 눈송이 가로 스크롤 방지 */
}
button { font-family: inherit; }
a { text-decoration: none; color: inherit; }


/* =========================================
   2. 인트로 화면 (Intro Screen)
   ========================================= */
#intro-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #0f172a;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 9999;
    transition: opacity 1s;
}
.intro-logo { 
    width: 150px;
    height: 150px;         /* 🔥 정사각형 비율 (원형 유지를 위해 필수) */
    background: white;     /* 🔥 흰색 배경 추가 */
    border-radius: 50%;    /* 🔥 원형 만들기 */
    padding: 20px;         /* 🔥 내부 여백 (로고가 꽉 차면 안 예쁘니까 넉넉하게) */
    margin-bottom: 20px;
    object-fit: contain;   /* 비율 유지 */
    
    /* 빛나는 효과 (인트로니까 좀 더 화려하게) */
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.6); 
    
    animation: bounce 2s infinite; 
}
.intro-title { font-size: 2rem; font-weight: bold; color: var(--accent-sky); letter-spacing: 2px; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


/* =========================================
   3. 네비게이션 (Navbar)
   ========================================= */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 30px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo-container {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
}
.nav-logo-img {
    width: 38px;           /* 🔥 크기 약간 확대 */
    height: 38px;          /* 정사각형 비율 */
    background: white;     /* 🔥 흰색 배경 */
    border-radius: 50%;    /* 원형 */
    padding: 6px;          /* 내부 여백 (로고가 작게 들어가도록) */
    object-fit: contain;   /* 비율 유지 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* 살짝 그림자 */
}

.logo {
    font-size: 1.5rem; 
    font-weight: bold;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links button {
    background: none; border: none;
    color: var(--text-gray);
    font-size: 1rem; margin-left: 20px;
    cursor: pointer; transition: 0.3s;
}

.nav-links button:hover, .nav-links button.active {
    color: white; font-weight: bold;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }


/* =========================================
   4. 레이아웃 및 화면 전환 (View Sections)
   ========================================= */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
    position: relative; 
    z-index: 10; 
}

/* 기본적으로 모든 섹션 숨김 */
.view-section {
    display: none; 
    animation: fadeIn 0.5s;
    padding-bottom: 50px;
}

/* 활성화된 섹션 표시 */
.view-section.active { display: block; }

/* 홈 화면은 Flex 중앙 정렬 사용 */
#view-home.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 그리드 시스템 (공통) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}


/* =========================================
   5. 홈 화면 (Home)
   ========================================= */


/* 눈 내리는 효과 */
.snow-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.snow { position: absolute; top: -10px; background: white; border-radius: 50%; opacity: 0.8; animation: snowfall linear infinite; }
.snow:nth-child(1) { left: 10%; width: 5px; height: 5px; animation-duration: 10s; animation-delay: 0s; }
.snow:nth-child(2) { left: 20%; width: 8px; height: 8px; animation-duration: 8s; animation-delay: 2s; }
.snow:nth-child(3) { left: 30%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 4s; }
/* ...나머지 눈송이는 JS나 CSS 추가 가능... */
@keyframes snowfall { 0% { transform: translateY(-10px); opacity: 0.8; } 100% { transform: translateY(100vh); opacity: 0.2; } }

/* 유리 질감 패널 공통 */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg);
}

.home-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px; /* 간격 약간 축소 */
    max-width: 900px; /* 전체 최대 너비를 줄여서 더 오밀조밀하게 */
    z-index: 10;

    /* 유리 효과 및 둥근 모서리 적용 */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-radius: 30px; /* 모서리 둥글게 */
    padding: 50px; /* 내부 여백 추가 */
}

/* 왼쪽: 릴파님 사진 (링크) */
.visual-side {
    flex: 0 0 auto; padding: 15px;
    transform: rotate(-3deg); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block; 
    cursor: pointer;
}
.visual-side:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.4);
    border-color: var(--accent-sky);
}
.visual-side img {
    display: block; max-width: 400px; max-height: 550px; width: auto; height: auto;
    object-fit: contain; border-radius: var(--radius-md);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* 오른쪽: 정보 */
.info-side { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: left; min-width: 300px; }
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    /* opacity: 0.8;  <-- 🔥 기존의 투명도 제거 */
}

/* 2. 로고 이미지에 흰색 원 스타일 적용 */
.home-mini-logo {
    width: 50px;           /* 🔥 크기 확대 */
    height: 50px;          /* 정사각형 */
    background: white;     /* 🔥 흰색 배경 */
    border-radius: 50%;    /* 원형 */
    padding: 8px;          /* 내부 여백 */
    object-fit: contain;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3); /* 은은한 광채 효과 */
}

/* 3. 글자에만 투명도 다시 적용 */
.logo-text {
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--accent-sky);
    opacity: 0.9; /* 🔥 글자가 너무 쨍하지 않게 약간 투명도 줌 */
}
.main-title {
    font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin: 0 0 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}
.countdown-box { padding: 30px; text-align: center; border-top: 2px solid var(--accent-sky); }
.countdown-label { margin: 0 0 10px 0; font-size: 1rem; color: var(--accent-sky); font-weight: bold; letter-spacing: 1px; }
.timer-digits { font-size: 2.5rem; font-weight: bold; font-variant-numeric: tabular-nums; color: white; text-shadow: 0 0 15px rgba(255,255,255,0.3); }


/* =========================================
   6. 팀 명단 (Roster)
   ========================================= */
.team-group { margin-bottom: 40px; }
.team-header { display: flex; align-items: center; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
/* style.css 약 215번째 줄 근처 */

.team-logo-img { 
    width: 50px;           /* 🔥 크기를 조금 키워서 잘 보이게 */
    height: 50px;          /* 정사각형 비율 고정 */
    margin-right: 15px;    /* 제목과의 간격 */
    
    background: white;     /* 🔥 흰색 배경 */
    border-radius: 50%;    /* 원형 */
    padding: 6px;          /* 내부 여백 */
    object-fit: contain;   /* 로고 비율 유지 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* 그림자 효과 */
}
.team-title { margin: 0; font-size: 1.2rem; }

.card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    cursor: pointer;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent-sky); }
.card img {
    width: 80px; height: 80px;
    background: white;       /* 🔥 흰색 배경 추가 */
    border-radius: 50%;      /* 원형 유지 */
    padding: 4px;            /* 🔥 사진과 흰색 배경 사이 여백 (테두리 효과) */
    object-fit: cover;       /* 사진 비율 유지하며 꽉 채우기 */
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* 입체감 있는 그림자 */
    border: none;            /* 기존의 얇은 테두리 삭제 */
}
.event-icons-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 한 줄에 2개 */
    gap: 6px; /* 아이콘 간격 */
    justify-content: center;
    align-items: center;
    margin: 10px auto 0 auto; /* 상단 여백 및 중앙 정렬 */
    width: fit-content; /* 내용물만큼만 너비 차지 */
}

.event-icons-mini img {
    width: 42px;          /* 🔥 기존 34px에서 42px로 확대 */
    height: 42px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    object-fit: contain;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
}

/* 2. 팝업 모달 (큰 화면) */
.event-icons {
    display: flex;            /* 🔥 Grid -> Flex로 변경 (가로 배치) */
    justify-content: center;  /* 중앙 정렬 */
    gap: 15px;                /* 아이콘 사이 간격 */
    margin: 20px auto;        /* 위아래 여백 */
    max-width: 100%;          /* 🔥 너비 제한 해제 (한 줄로 펴지게) */
    flex-wrap: wrap;          /* 혹시 너무 많으면 줄바꿈 허용 (안전장치) */
}

.event-icons img {
    width: 55px;              /* 모달 아이콘 크기도 살짝 키움 */
    height: 55px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* 그림자 조금 더 진하게 */
    /* margin: 0 auto;  <- Flex에서는 불필요하므로 삭제 */
}


/* =========================================
   7. 경기 일정 (Schedule)
   ========================================= */
.date-tabs {
    display: flex; gap: 10px; margin-bottom: 20px;
    overflow-x: auto; padding-bottom: 5px; white-space: nowrap;
}
.date-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 8px 16px; border-radius: 20px;
    font-size: 0.95rem; cursor: pointer; transition: 0.3s;
}
.date-tab-btn:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: var(--accent-sky); }
.date-tab-btn.active {
    background: var(--accent-blue); color: #fff;
    border-color: transparent; font-weight: bold;
}

.schedule-item {
    background: var(--card-bg); padding: 20px; margin-bottom: 15px;
    border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; border-left: 4px solid var(--accent-blue);
}
.schedule-item:hover { background: #273549; }
.match-date { font-size: 0.9rem; color: var(--accent-sky); margin-right: 10px; font-weight: bold; }
.match-title { font-size: 1.1rem; font-weight: bold; }
.match-status.done {
    background: rgba(56, 189, 248, 0.1); color: var(--accent-sky);
    padding: 5px 10px; border-radius: 20px; font-size: 0.8rem;
}

.back-btn { margin-bottom: 15px; background: none; border: none; color: var(--text-gray); cursor: pointer; font-size: 1rem; }
.back-btn:hover { color: white; }
.leaderboard-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: var(--card-bg); border-radius: 10px; overflow: hidden; }
.leaderboard-table th, .leaderboard-table td { padding: 15px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.leaderboard-table th { background: rgba(0,0,0,0.2); color: var(--text-gray); font-weight: normal; }

.state-text { font-weight: bold; font-size: 0.9rem; }
.state-qual { color: var(--accent-sky); border: 1px solid var(--accent-sky); padding: 4px 10px; border-radius: 20px; background: rgba(56, 189, 248, 0.1); }
.state-dq { color: #ef4444; }
.state-dns { color: #64748b; }
.medal-icon { width: 24px; vertical-align: middle; }


/* =========================================
   8. 종합 순위 (Ranking)
   ========================================= */
.rank-filters { display: flex; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.filter-group { display: flex; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 4px; }
.tab-btn, .filter-btn {
    background: none; border: none; color: var(--text-gray);
    padding: 8px 16px; cursor: pointer; border-radius: 6px; font-size: 0.9rem;
}
.tab-btn.active, .filter-btn.active { background: var(--card-bg); color: white; font-weight: bold; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.medal-counts span { font-size: 1.1rem; font-weight: bold; margin-left: 5px; }
.rank-logo {
    width: 34px;           /* 적당한 크기 */
    height: 34px;
    background: white;     /* 흰색 배경 */
    border-radius: 50%;    /* 원형 */
    padding: 4px;          /* 내부 여백 */
    object-fit: contain;
    vertical-align: middle; /* 텍스트와 높이 맞춤 */
    margin-right: 8px;     /* 이름과의 간격 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: inline-block;
}


/* =========================================
   9. 모의 경매 (Auction) - 🔥 좌우 배치 스타일 적용
   ========================================= */
.auction-container {
    display: flex; flex-direction: column; 
    height: 80vh; min-height: 600px;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative; overflow: hidden;
}

/* 🔥 전체 레이아웃 (좌-중-우) */
.auction-layout {
    display: flex;
    flex: 1; /* 남은 높이 모두 차지 */
    width: 100%;
    overflow: hidden;
}

/* 🔥 양쪽 사이드바 (감독 구역) */
.managers-side {
    width: 130px; /* 사이드바 너비 */
    background: rgba(0,0,0,0.3);
    padding: 15px 10px;
    display: flex; flex-direction: column; gap: 15px; /* 감독 간 간격 */
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,0.05);
}
/* 오른쪽 사이드바는 왼쪽 테두리 */
.managers-side:last-child {
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.05);
}

/* 🔥 중앙 무대 */
.auction-center {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; padding: 20px;
}

/* 감독 슬롯 (세로형으로 변경) */
.manager-slot { 
    text-align: center; opacity: 0.6; transition: 0.3s; 
    background: rgba(255,255,255,0.05); padding: 10px; border-radius: 10px;
}
.manager-slot.active { 
    opacity: 1; transform: scale(1.05); 
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}
.manager-slot img { margin-bottom: 5px; }

/* 타이머 및 정보 */
.auction-info { text-align: center; margin-bottom: 20px; width: 100%; max-width: 300px; }
.timer-bar { width: 100%; height: 8px; background: #333; margin-top: 10px; border-radius: 4px; overflow: hidden; }
.timer-bar .bar { height: 100%; background: var(--accent-sky); width: 100%; transition: width 0.1s linear; }

/* 🔥 남은 시간 텍스트 */
.timer-text {
    font-size: 1.1rem; font-weight: bold; color: var(--accent-sky);
    margin-top: 8px; letter-spacing: 1px;
}

/* 경매 카드 */
.auction-card {
    background: rgba(255,255,255,0.05); padding: 30px; border-radius: 20px;
    text-align: center; border: 2px solid var(--accent-sky);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1); width: 300px;
    margin-bottom: 20px;
}
.auction-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }

.current-bid-box {
    margin-top: 20px; background: rgba(0,0,0,0.5); padding: 15px; border-radius: 10px;
    display: flex; flex-direction: column; gap: 5px;
}
.current-bid-box strong { font-size: 2.5rem; color: var(--gold); }
.badge { display: inline-block; padding: 4px 8px; border-radius: 4px; font-size: 0.8rem; color: white; }

.auction-log {
    height: 30px; color: #aaa; font-size: 0.9rem;
    overflow: hidden; text-align: center;
    animation: fadeIn 0.3s;
}

/* 하단 컨트롤 */
.auction-controls {
    padding: 20px; background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
    z-index: 10;
}
.bid-buttons { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.bid-buttons button {
    padding: 10px 15px; border: none; border-radius: 8px; font-weight: bold; cursor: pointer;
    background: #334155; color: white; transition: 0.2s;
}
.bid-buttons button:hover { background: var(--accent-sky); }
.bid-buttons .all-in { background: #ef4444; }
.bid-buttons .pass-btn { background: transparent; border: 1px solid #64748b; color: #94a3b8; }

.auction-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.95); z-index: 100;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.start-btn {
    margin-top: 20px; padding: 15px 40px; font-size: 1.2rem; font-weight: bold;
    background: var(--accent-sky); border: none; border-radius: 30px; cursor: pointer;
    color: #0f172a; box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}


/* =========================================
   10. 모달 및 버튼 그룹 (Modal) - 수정됨 ✨
   ========================================= */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); }
.modal-content {
    background-color: var(--card-bg); margin: 10% auto; padding: 30px;
    border-radius: 20px; width: 90%; max-width: 400px;
    text-align: center; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.close { position: absolute; top: 15px; right: 20px; color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer; }
.modal-avatar { 
    width: 120px; height: 120px;
    background: white;       /* 🔥 흰색 배경 추가 */
    border-radius: 50%; 
    padding: 6px;            /* 🔥 사진과 흰색 배경 사이 여백 */
    object-fit: cover; 
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4); /* 빛나는 효과 */
    border: none;            /* 기존 파란색 테두리 삭제 */
}
.team-badge { display: inline-block; background: var(--accent-blue); padding: 5px 12px; border-radius: 15px; font-size: 0.8rem; margin-bottom: 15px; }

/* 🔥 버튼 그룹 스타일 (좌우 배치) */
.modal-btn-group {
    display: flex; gap: 10px; justify-content: center; margin-top: 20px; width: 100%;
}

/* 🔥 공통 버튼 스타일 */
.modal-btn {
    flex: 1; padding: 12px 0; text-align: center; border-radius: 8px;
    text-decoration: none; font-weight: bold; font-size: 0.95rem;
    transition: 0.3s; display: inline-block; color: white; border: none; cursor: pointer;
}

/* 1. 지원글 보기 버튼 (파란색) */
.app-btn { background: #3b82f6; border: 1px solid #2563eb; }
.app-btn:hover { background: #2563eb; box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }

/* 2. 방송국 가기 버튼 (하늘색/민트색 - SOOP 느낌) */
.station-btn { background: #67e8f9; color: #0f172a; border: 1px solid #22d3ee; }
.station-btn:hover { background: #22d3ee; box-shadow: 0 0 15px rgba(34, 211, 238, 0.4); }


/* =========================================
   11. 반응형 (Mobile)
   ========================================= */
@media (max-width: 900px) {
    .home-content-wrapper { flex-direction: column; gap: 40px; margin-top: 20px; }
    .visual-side { transform: rotate(0deg); }
    .visual-side img { max-width: 80vw; max-height: 40vh; }
    .info-side { text-align: center; align-items: center; width: 100%; }
    .logo-area { justify-content: center; }
    .main-title { font-size: 2.5rem; margin-bottom: 30px; }
    .countdown-box { width: 100%; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 60px; left: 0; width: 100%;
        background: var(--bg-dark); flex-direction: column; padding: 20px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.show { display: flex; }
    .nav-links button { margin: 10px 0; font-size: 1.2rem; }
    .hamburger { display: block; }
    
    .auction-controls { flex-direction: column; text-align: center; }
    .my-status { margin-bottom: 10px; }
}
/* =========================================
   🔥 [추가] 감독 및 팀원 배치 스타일
   ========================================= */

/* 감독 섹션 (상단 중앙 정렬) */
.manager-section {
    display: flex;
    justify-content: center;
    margin-bottom: 25px; /* 팀원들과의 간격 */
    position: relative;
}

/* 감독과 팀원을 이어주는 장식 선 (선택사항) */
.manager-section::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.1);
}

/* 감독 카드 특별 스타일 */
.manager-card {
    border: 2px solid var(--gold) !important; /* 금색 테두리 */
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2); /* 은은한 금빛 효과 */
    transform: scale(1.05); /* 약간 더 크게 */
    z-index: 5;
}

.manager-card::before {
    content: '감독'; /* 감독 뱃지 */
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}