/* ============================================
   星空体育 - 主样式表
   配色方案: 深海蓝 + 星辰金 + 暗夜紫
   ============================================ */

/* CSS Variables */
:root {
  --primary-deep: #060d1f;
  --primary-dark: #0b1832;
  --primary-mid: #122448;
  --accent-gold: #d4a843;
  --accent-gold-light: #f0d078;
  --accent-purple: #6b3fa0;
  --accent-cyan: #2ec4b6;
  --text-white: #f5f5f5;
  --text-light: #c8d0e0;
  --text-muted: #8892a8;
  --border-color: rgba(212, 168, 67, 0.2);
  --card-bg: rgba(11, 24, 50, 0.85);
  --card-hover: rgba(18, 36, 72, 0.95);
  --gradient-gold: linear-gradient(135deg, #d4a843, #f0d078);
  --gradient-hero: linear-gradient(160deg, #060d1f 0%, #0b1832 40%, #1a1040 100%);
  --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-mid: 0.35s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  background: var(--primary-deep);
  color: var(--text-light);
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-gold-light); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-white); line-height: 1.3; font-weight: 700; }

/* Container */
.xk-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; width: 100%; }

/* ============================================
   Header / Navigation (非sticky)
   ============================================ */
.xk-header {
  background: var(--primary-dark);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}
.xk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.xk-logo { display: flex; align-items: center; gap: 10px; }
.xk-logo img { width: 42px; height: 42px; border-radius: 50%; }
.xk-logo-text { font-size: 1.25rem; font-weight: 800; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Desktop Nav */
.xk-nav { display: flex; align-items: center; gap: 0; }
.xk-nav a {
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.xk-nav a:hover, .xk-nav a.active { color: var(--accent-gold); background: rgba(212, 168, 67, 0.08); }

/* Mobile Menu Toggle */
.xk-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.xk-menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: var(--transition-mid);
}

/* Mobile Nav */
.xk-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding: 8px 0;
}
.xk-mobile-nav.open { display: flex; }
.xk-mobile-nav a {
  padding: 14px 20px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.95rem;
}
.xk-mobile-nav a:hover { color: var(--accent-gold); background: rgba(212, 168, 67, 0.06); }

/* ============================================
   Hero Section
   ============================================ */
.xk-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}
.xk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.xk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.xk-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}
.xk-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.xk-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin-bottom: 28px; }

/* CTA Button */
.xk-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gradient-gold);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-mid);
  box-shadow: var(--shadow-gold);
}
.xk-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 168, 67, 0.35); color: var(--primary-deep); }

/* ============================================
   Section Titles
   ============================================ */
.xk-section { padding: 56px 0; }
.xk-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.xk-section-title h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.xk-section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}
.xk-section-title p { color: var(--text-muted); font-size: 1rem; }

/* ============================================
   Card Grid
   ============================================ */
.xk-grid { display: grid; gap: 20px; }
.xk-grid-2 { grid-template-columns: repeat(2, 1fr); }
.xk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.xk-grid-4 { grid-template-columns: repeat(4, 1fr); }

.xk-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-mid);
}
.xk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent-gold); }
.xk-card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.xk-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-mid); }
.xk-card:hover .xk-card-img img { transform: scale(1.05); }
.xk-card-body { padding: 18px; }
.xk-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.xk-card-body p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   Odds Table
   ============================================ */
.xk-odds-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.xk-odds-table thead { background: var(--primary-mid); }
.xk-odds-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.xk-odds-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}
.xk-odds-table tbody tr:hover { background: rgba(212, 168, 67, 0.05); }
.xk-odds-value {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(46, 196, 182, 0.12);
  color: var(--accent-cyan);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
}
.xk-odds-value.hot { background: rgba(212, 168, 67, 0.15); color: var(--accent-gold); }

/* ============================================
   License Badge
   ============================================ */
.xk-license {
  display: flex;
  gap: 30px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.xk-license-img { flex: 0 0 200px; }
.xk-license-img img { border-radius: var(--radius-md); border: 2px solid var(--accent-gold); }
.xk-license-info h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--accent-gold); }
.xk-license-info p { margin-bottom: 10px; }
.xk-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(46, 196, 182, 0.1);
  color: var(--accent-cyan);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   Video Module
   ============================================ */
.xk-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #000;
}
.xk-video-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--transition-mid); }
.xk-video-wrap .xk-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(212, 168, 67, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-mid);
}
.xk-video-wrap .xk-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 22px solid var(--primary-deep);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}
.xk-video-wrap:hover .xk-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--accent-gold); }
.xk-video-wrap video { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Articles
   ============================================ */
.xk-article-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-mid);
}
.xk-article-card:hover { border-color: var(--accent-gold); transform: translateY(-3px); }
.xk-article-card .xk-article-thumb { aspect-ratio: 16/10; overflow: hidden; }
.xk-article-card .xk-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.xk-article-card .xk-article-content { padding: 18px; }
.xk-article-card .xk-article-content h3 { font-size: 1.05rem; margin-bottom: 8px; }
.xk-article-card .xk-article-content p { font-size: 0.88rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.xk-article-card .xk-article-meta { padding: 10px 18px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   Registration Form
   ============================================ */
.xk-register-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  margin: 0 auto;
}
.xk-register-box h3 { text-align: center; margin-bottom: 24px; font-size: 1.4rem; }
.xk-form-group { margin-bottom: 18px; }
.xk-form-group label { display: block; margin-bottom: 6px; font-size: 0.9rem; color: var(--text-muted); }
.xk-form-group input, .xk-form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--primary-deep);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}
.xk-form-group input:focus, .xk-form-group select:focus { border-color: var(--accent-gold); outline: none; }
.xk-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gradient-gold);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-mid);
}
.xk-form-submit:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* ============================================
   Reviews
   ============================================ */
.xk-review {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition-mid);
}
.xk-review:hover { border-color: var(--accent-gold); }
.xk-review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.xk-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-deep);
  flex-shrink: 0;
}
.xk-review-user { flex: 1; }
.xk-review-user strong { display: block; font-size: 0.95rem; }
.xk-review-user small { color: var(--text-muted); font-size: 0.8rem; }
.xk-review-stars { color: var(--accent-gold); font-size: 0.9rem; letter-spacing: 2px; }
.xk-review-text { font-size: 0.92rem; color: var(--text-light); margin-bottom: 10px; }
.xk-review-date { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   FAQ Accordion
   ============================================ */
.xk-faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.xk-faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-white);
  transition: background var(--transition-fast);
}
.xk-faq-question:hover { background: rgba(212, 168, 67, 0.05); }
.xk-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-gold);
  transition: transform var(--transition-mid);
  flex-shrink: 0;
  margin-left: 12px;
}
.xk-faq-item.open .xk-faq-question::after { content: '−'; }
.xk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.xk-faq-item.open .xk-faq-answer { max-height: 500px; padding: 0 22px 18px; }
.xk-faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================
   Payment Icons
   ============================================ */
.xk-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.xk-payment-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
  transition: all var(--transition-mid);
}
.xk-payment-item:hover { border-color: var(--accent-gold); }
.xk-payment-item .xk-pay-icon { font-size: 2rem; margin-bottom: 6px; }
.xk-payment-item .xk-pay-name { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   Footer
   ============================================ */
.xk-footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
  margin-top: 40px;
}
.xk-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 36px;
}
.xk-footer-col h4 {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.xk-footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.xk-footer-col a:hover { color: var(--accent-gold); }
.xk-footer-social { display: flex; gap: 12px; margin-top: 8px; }
.xk-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent-gold);
  transition: all var(--transition-fast);
}
.xk-footer-social a:hover { background: var(--accent-gold); color: var(--primary-deep); }
.xk-footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.xk-footer-bottom p { margin-bottom: 6px; }
.xk-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e74c3c;
  color: #e74c3c;
  font-weight: 800;
  font-size: 0.85rem;
  margin: 8px auto;
}

/* ============================================
   Breadcrumb
   ============================================ */
.xk-breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
}
.xk-breadcrumb a { color: var(--text-muted); }
.xk-breadcrumb a:hover { color: var(--accent-gold); }
.xk-breadcrumb span { color: var(--text-muted); margin: 0 6px; }
.xk-breadcrumb .current { color: var(--accent-gold); }

/* ============================================
   About Section
   ============================================ */
.xk-about-flex { display: flex; gap: 30px; align-items: flex-start; }
.xk-about-img { flex: 0 0 45%; border-radius: var(--radius-lg); overflow: hidden; }
.xk-about-img img { width: 100%; }
.xk-about-text { flex: 1; }
.xk-about-text h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--accent-gold); }
.xk-about-text p { margin-bottom: 14px; font-size: 0.95rem; }

/* ============================================
   Deposit Bonus
   ============================================ */
.xk-bonus-banner {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.3), rgba(212, 168, 67, 0.2));
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.xk-bonus-banner h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--accent-gold-light); }
.xk-bonus-banner p { font-size: 1.05rem; margin-bottom: 20px; }
.xk-bonus-banner .xk-bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

/* ============================================
   Esports Prediction
   ============================================ */
.xk-prediction-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.xk-prediction-card .xk-pred-img { aspect-ratio: 16/9; overflow: hidden; }
.xk-prediction-card .xk-pred-img img { width: 100%; height: 100%; object-fit: cover; }
.xk-prediction-card .xk-pred-body { padding: 20px; }
.xk-prediction-card .xk-pred-teams { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.xk-prediction-card .xk-pred-team { text-align: center; }
.xk-prediction-card .xk-pred-vs { font-size: 1.4rem; font-weight: 800; color: var(--accent-gold); }
.xk-prediction-card .xk-pred-result {
  padding: 10px;
  background: rgba(46, 196, 182, 0.08);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.9rem;
}

/* ============================================
   Support Section
   ============================================ */
.xk-support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.xk-support-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-mid);
}
.xk-support-item:hover { border-color: var(--accent-gold); }
.xk-support-item .xk-support-icon { font-size: 2.2rem; margin-bottom: 10px; }
.xk-support-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.xk-support-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   Inner Page Content
   ============================================ */
.xk-inner-hero {
  background: var(--gradient-hero);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.xk-inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(107, 63, 160, 0.15), transparent 60%);
}
.xk-inner-hero h1 { font-size: 2rem; position: relative; z-index: 1; }
.xk-inner-hero p { color: var(--text-muted); position: relative; z-index: 1; margin-top: 8px; }

.xk-content-area { padding: 40px 0; }
.xk-content-area h2 { font-size: 1.5rem; margin: 30px 0 16px; color: var(--accent-gold); }
.xk-content-area h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.xk-content-area p { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.85; }
.xk-content-area .xk-content-img {
  margin: 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.xk-content-area .xk-content-img img { width: 100%; }

/* ============================================
   App Download
   ============================================ */
.xk-app-section { text-align: center; }
.xk-app-phones { max-width: 400px; margin: 0 auto 30px; }
.xk-app-phones img { border-radius: var(--radius-lg); }
.xk-app-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.xk-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--card-bg);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-xl);
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-mid);
}
.xk-app-btn:hover { background: var(--accent-gold); color: var(--primary-deep); }
.xk-app-btn .xk-app-icon { font-size: 1.5rem; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .xk-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .xk-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .xk-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .xk-support-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .xk-nav { display: none; }
  .xk-menu-toggle { display: flex; }
  .xk-hero h1 { font-size: 1.75rem; }
  .xk-hero { min-height: 400px; }
  .xk-hero-content { padding: 40px 16px; }
  .xk-section { padding: 36px 0; }
  .xk-section-title h2 { font-size: 1.45rem; }
  .xk-grid-2, .xk-grid-3, .xk-grid-4 { grid-template-columns: 1fr; }
  .xk-license { flex-direction: column; text-align: center; }
  .xk-license-img { flex: none; width: 160px; margin: 0 auto; }
  .xk-about-flex { flex-direction: column; }
  .xk-about-img { flex: none; }
  .xk-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .xk-support-grid { grid-template-columns: 1fr; }
  .xk-odds-table { font-size: 0.82rem; }
  .xk-odds-table th, .xk-odds-table td { padding: 10px 8px; }
  .xk-register-box { padding: 24px 18px; }
  .xk-inner-hero h1 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .xk-hero h1 { font-size: 1.5rem; }
  .xk-footer-grid { grid-template-columns: 1fr; }
  .xk-cta { padding: 12px 28px; font-size: 0.95rem; }
  .xk-bonus-banner .xk-bonus-amount { font-size: 2.2rem; }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.xk-animate { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.xk-delay-1 { animation-delay: 0.1s; }
.xk-delay-2 { animation-delay: 0.2s; }
.xk-delay-3 { animation-delay: 0.3s; }

/* Responsible Gambling Banner */
.xk-responsible {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(212, 168, 67, 0.05));
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 20px;
}
.xk-responsible h4 { color: #e74c3c; margin-bottom: 10px; }
.xk-responsible p { font-size: 0.88rem; color: var(--text-muted); }

/* Recharge/Deposit Activity */
.xk-recharge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.xk-recharge-card {
  background: linear-gradient(145deg, var(--card-bg), rgba(107, 63, 160, 0.1));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-mid);
}
.xk-recharge-card:hover { border-color: var(--accent-gold); transform: translateY(-3px); }
.xk-recharge-card .xk-recharge-pct {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.xk-recharge-card h4 { margin: 8px 0; font-size: 1rem; }
.xk-recharge-card p { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .xk-recharge-grid { grid-template-columns: 1fr; }
}
