/* ====== 쇠구컵 2 - Main Stylesheet ====== */
/* Dark Theme + Gold Accent - E-Sports Championship Style */

@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Orbitron:wght@400;500;700;900&display=swap');

:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a25;
  --bg-card: #16161f;
  
  --gold-primary: #ffd700;
  --gold-secondary: #ffb800;
  --gold-dark: #b8860b;
  --gold-glow: rgba(255, 215, 0, 0.3);
  
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  
  --accent-red: #ff4655;
  --accent-blue: #00d4ff;
  --accent-green: #00ff88;
  --accent-purple: #8b5cf6;
  
  /* Tier Colors */
  --tier-iron: #5c5c5c;
  --tier-bronze: #cd7f32;
  --tier-silver: #c0c0c0;
  --tier-gold: #ffd700;
  --tier-platinum: #00c8c8;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #b8860b 100%);
  --gradient-dark: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
  --gradient-card: linear-gradient(145deg, #1a1a25 0%, #12121a 100%);
  
  /* Shadows */
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  
  /* Spacing */
  --nav-height: 70px;
}

/* ====== Reset & Base ====== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Noto Sans KR', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ====== Typography ====== */
.font-display {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
}

.font-tech {
  font-family: 'Orbitron', sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.text-gold {
  color: var(--gold-primary);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====== Layout ====== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* ====== Navigation ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 20px;
  color: var(--bg-primary);
}

.nav-logo-text {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 24px;
  color: var(--gold-primary);
}

.nav-logo-text span {
  color: var(--text-primary);
  font-size: 16px;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
}

/* ====== Hero Section ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
    var(--bg-primary);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--gold-primary);
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(60px, 12vw, 140px);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-title .gold {
  color: var(--gold-primary);
  text-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
}

.hero-title .cup {
  display: block;
  font-size: 0.6em;
  color: var(--text-primary);
  letter-spacing: 0.2em;
}

.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-date {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 50px;
}

.hero-date span {
  color: var(--gold-primary);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ====== Cards ====== */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

/* ====== Schedule Section ====== */
.schedule {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 15px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.schedule-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(10px);
}

.schedule-date {
  min-width: 100px;
  text-align: center;
}

.schedule-date-day {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.schedule-date-month {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.schedule-divider {
  width: 3px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.schedule-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.schedule-content p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ====== Rules Section ====== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.rule-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.rule-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.rule-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.rule-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.rule-list {
  list-style: none;
  margin-top: 20px;
}

.rule-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--text-secondary);
}

.rule-list li:last-child {
  border-bottom: none;
}

.rule-list li::before {
  content: '▸';
  color: var(--gold-primary);
}

/* ====== Penalty Table ====== */
.penalty-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.penalty-table th,
.penalty-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.penalty-table th {
  color: var(--gold-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.penalty-table td {
  color: var(--text-secondary);
}

.penalty-table tr:hover td {
  color: var(--text-primary);
}

/* ====== Stats Section ====== */
.stats {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ====== Footer ====== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 24px;
  color: var(--bg-primary);
}

.footer-brand-text h3 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 20px;
  color: var(--gold-primary);
}

.footer-brand-text p {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ====== Tier Badge ====== */
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tier-iron { background: rgba(92, 92, 92, 0.2); color: var(--tier-iron); border: 1px solid var(--tier-iron); }
.tier-bronze { background: rgba(205, 127, 50, 0.2); color: var(--tier-bronze); border: 1px solid var(--tier-bronze); }
.tier-silver { background: rgba(192, 192, 192, 0.2); color: var(--tier-silver); border: 1px solid var(--tier-silver); }
.tier-gold { background: rgba(255, 215, 0, 0.2); color: var(--tier-gold); border: 1px solid var(--tier-gold); }

/* ====== Position Badge ====== */
.position-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.pos-top { background: rgba(255, 70, 85, 0.2); color: var(--accent-red); }
.pos-jungle { background: rgba(0, 255, 136, 0.2); color: var(--accent-green); }
.pos-mid { background: rgba(139, 92, 246, 0.2); color: var(--accent-purple); }
.pos-adc { background: rgba(0, 212, 255, 0.2); color: var(--accent-blue); }
.pos-support { background: rgba(255, 184, 0, 0.2); color: var(--gold-secondary); }

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .schedule-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .schedule-divider {
    width: 50px;
    height: 3px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  
  .btn {
    width: 100%;
  }
}

/* UP 배지 스타일 (2026-01-22 추가) */
.up-badge {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(251, 146, 60, 0.2) 100%);
  color: #fb923c;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 8px;
}

/* ====== 드래프트 탭 리디자인 (2026-01-22) ====== */

/* 드래프트 정보 배너 */
.draft-info-banner {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
}

.draft-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.draft-info-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.draft-info-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.draft-info-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.draft-info-value.highlight {
  color: var(--gold-primary);
}

/* 카운트다운 & 마감 안내 */
.draft-countdown-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  padding: 12px 20px;
}

.draft-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.countdown-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-primary);
}

.draft-deadline {
  font-size: 12px;
  color: var(--text-secondary);
}

.draft-deadline strong {
  color: var(--accent-red);
  font-weight: 600;
}

/* 경매 규칙 요약 */
.draft-rules-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.draft-rule-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-secondary);
}

.draft-rule-tag.important {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--gold-primary);
}

/* 골드 티어 선수 강조 */
.draft-card.gold-tier-player {
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  position: relative;
}

.draft-card.gold-tier-player::before {
  content: 'GOLD';
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gradient-gold);
  color: #000;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* 드래프트 카드 기본 스타일 */
.draft-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.draft-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-card);
}

.draft-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.draft-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-tertiary);
  position: relative;
  flex-shrink: 0;
}

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

.draft-card-avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
}

.draft-card-info {
  flex: 1;
  min-width: 0;
}

.draft-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.draft-card-id {
  font-size: 12px;
  color: var(--text-muted);
}

/* 드래프트 카드 상세 */
.draft-card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.draft-card-tier {
  display: flex;
  align-items: center;
  gap: 10px;
}

.draft-card-tier-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.draft-card-tier-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.draft-card-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.draft-card-games {
  font-size: 13px;
  color: var(--text-secondary);
}

.draft-card-penalty {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.draft-card-penalty.high {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.draft-card-penalty.mid {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
}

.draft-card-penalty.none {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* 드래프트 카드 링크 */
.draft-card-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.draft-link {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}

.draft-link-station {
  background: rgba(128, 0, 255, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(128, 0, 255, 0.3);
}

.draft-link-station:hover {
  background: rgba(128, 0, 255, 0.25);
}

.draft-link-deeplol {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.draft-link-deeplol:hover {
  background: rgba(59, 130, 246, 0.25);
}

/* 드래프트 그리드 */
.draft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* 반응형 */
@media (max-width: 768px) {
  .draft-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .draft-countdown-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .draft-rules-summary {
    justify-content: center;
  }
  
  .draft-grid {
    grid-template-columns: 1fr;
  }
}
