/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700;900&display=swap');

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #08113c;
  color: #fff;
  line-height: 1.4; /* 전체 줄간격 소폭 축소 */
}
a { text-decoration: none; transition: 0.3s; }

/* 상단 공지 바 */
.top-notice-bar {
  background: #ff5252;
  color: white;
  text-align: center;
  padding: 8px 20px; /* 높이 축소 */
  font-size: 0.9rem;
  font-weight: bold;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  padding: 15px 5%; /* 헤더 높이 축소 */
}
.logo-group { display: flex; align-items: center; gap: 15px; }
.main-logo { height: 28px; } /* 로고 크기 소폭 축소 */
.sub-logo { height: 22px; }
.logo-divider { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* 레이아웃 */
.hero-split {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 40px; /* 상단 패딩 대폭 축소 */
  gap: 30px; /* 간격 축소 */
  align-items: flex-start;
}
.hero-text-side, .hero-image-side { flex: 1; min-width: 340px; }

/* 좌측 영역 */
.status-badge {
  background: rgba(0, 191, 255, 0.1);
  color: #00bfff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}
.hero-text-side h1 { font-size: 2.2rem; margin: 10px 0; line-height: 1.2; font-weight: 900; }
.highlight-blue { color: #00bfff; }
.warning-box {
  background: rgba(255, 82, 82, 0.08);
  border-left: 4px solid #ff5252;
  padding: 12px 15px; /* 내부 여백 축소 */
  margin-bottom: 15px; /* 하단 마진 축소 */
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

/* --- 프로모션 컨테이너 높이 최적화 --- */
.promo-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px; /* 패딩 대폭 축소 (기존 30px) */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.promo-text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; /* 간격 축소 */
  font-size: 0.95rem;
}
.promo-text-row strong { color: #ffeb3b; font-size: 1.2rem; margin-left: 8px; }
.copy-btn {
  background: #555;
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.8rem;
}
.copy-btn.copied { background: #00ffae; color: #08113c; }

.btn-1x-direct {
  display: block;
  background: #00bfff;
  color: #fff;
  text-align: center;
  padding: 12px; /* 높이 축소 (기존 18px) */
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.2);
}
.btn-1x-direct:hover { background: #0096cc; transform: translateY(-2px); }

/* --- 우측 WEGO88 카드 --- */
.alternative-card {
  background: #0e1a4b;
  border: 2px solid #00ffae;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.card-header {
  background: rgba(0, 255, 174, 0.05);
  padding: 12px 20px; /* 헤더 높이 축소 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.header-left-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.card-logo {
  height: 28px; /* 로고 높이 축소 */
  width: auto;
  flex-shrink: 0;
}

.payment-tag {
  color: #00ffae;
  font-size: 0.8rem;
  font-weight: bold;
  background: rgba(0, 255, 174, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.recommend-tag {
  background: #ffeb3b;
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.8rem;
  white-space: nowrap;
}

.card-body { padding: 20px; } /* 패딩 축소 */
.card-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.info-image-container { margin: 15px 0; border-radius: 12px; overflow: hidden; }
.wego-info-img { width: 100%; display: block; }

.btn-wego {
  display: block;
  background: #00ffae;
  color: #08113c;
  text-align: center;
  padding: 15px; /* 버튼 높이 축소 */
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}

/* Footer */
.footer { text-align: center; padding: 30px; color: #555; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 992px) {
  .hero-split { flex-direction: column; text-align: center; padding-top: 5px; }
  .hero-text-side, .hero-image-side { width: 100%; min-width: unset; max-width: 500px; margin: 0 auto; }
  .warning-box { text-align: left; }
  .hero-text-side h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .card-header { padding: 10px; }
  .header-left-group { gap: 6px; }
  .card-logo { height: 22px; }
  .payment-tag { font-size: 0.7rem; }
  .recommend-tag { font-size: 0.7rem; }
}

@media (max-width: 360px) {
  .payment-tag { display: none; }
}