/* 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: #0b111a;
  color: #f1f1f1;
  line-height: 1.4;
}
a { text-decoration: none; transition: 0.3s; }

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

/* Header */
.header {
  display: flex;
  justify-content: center;
  padding: 20px 5%;
}
.logo-group { display: flex; align-items: center; gap: 15px; }
.main-logo { height: 26px; filter: brightness(1.2); }
.sub-logo { height: 24px; }
.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: 20px 20px 60px;
  gap: 40px;
  align-items: flex-start;
}
.hero-text-side, .hero-image-side { flex: 1; min-width: 340px; }

/* 좌측 영역 (1XBET) */
.status-badge {
  background: rgba(255, 255, 255, 0.05);
  color: #bbb;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.hero-text-side h1 { font-size: 2.4rem; margin: 15px 0; line-height: 1.2; font-weight: 900; }
.highlight-blue { color: #ffffff; border-bottom: 3px solid #0056b3; }
.warning-box {
  background: rgba(230, 57, 70, 0.1);
  border-left: 4px solid #e63946;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: #ffb4b4;
}

.promo-container {
  background: #161d29;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.promo-text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.promo-text-row strong { color: #f1f1f1; font-size: 1.4rem; margin-left: 10px; text-decoration: underline; }
.copy-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.copy-btn.copied { background: #fff; color: #000; }

.btn-1x-direct {
  display: block;
  background: #0056b3;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
}

/* --- 우측 1win 카드 (강조 스타일) --- */
.alternative-card {
  background: #111821; 
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
}

.highlight-glow {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05), 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.alternative-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-logo { height: 28px; width: auto; }

.payment-tag {
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  background: rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
}

.recommend-tag {
  background: #fff;
  color: #000;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.card-body { padding: 25px; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 12px; color: #fff; }
.card-body p { color: #aaa; font-size: 0.95rem; margin-bottom: 15px; }

.info-image-container { 
  margin: 20px 0; 
  border-radius: 12px; 
  overflow: hidden; 
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.onewin-info-img { width: 100%; display: block; }

.btn-1win {
  display: block;
  background: #ffffff;
  color: #0b111a;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.btn-1win:hover { background: #e0e0e0; transform: scale(1.02); }

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

/* Responsive */
@media (max-width: 992px) {
  .hero-split { flex-direction: column; text-align: center; }
  .hero-text-side, .hero-image-side { width: 100%; max-width: 500px; margin: 0 auto; }
  .warning-box { text-align: left; }
}