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

:root {
  --bg-dark: #08081a;
  --bg-card: #12122e;
  --bg-card-hover: #1a1a40;
  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-light: #a78bfa;
  --gold: #fbbf24;
  --gold-dark: #d97706;
  --emerald: #10b981;
  --text-white: #f1f1f5;
  --text-gray: #9ca3af;
  --text-dim: #6b7280;
  --border: rgba(139, 92, 246, 0.15);
  --glow-purple: rgba(139, 92, 246, 0.3);
  --glow-gold: rgba(251, 191, 36, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.logo-text {
  color: var(--text-white);
}

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

.nav-list > li > a {
  display: block;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  color: var(--text-gray);
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--text-white);
  background: rgba(139, 92, 246, 0.1);
}

.has-dropdown {
  position: relative;
}

.arrow {
  font-size: 0.7rem;
  margin-left: 4px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
  transition: all 0.2s;
}

.dropdown li a:hover {
  background: rgba(139, 92, 246, 0.15);
  color: var(--text-white);
}

.header-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.header-cta:hover {
  box-shadow: 0 4px 20px var(--glow-purple);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px var(--glow-purple);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--purple-light);
  color: var(--purple-light);
}

.btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(139, 92, 246, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
}

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

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--purple-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
}

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

.section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === PARTNER RANKING === */
.partners-ranking {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.partner-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.partner-card.featured {
  border-color: var(--gold);
}

.partner-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px var(--glow-gold);
}

.partner-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--gold);
  z-index: 2;
}

.partner-card {
  position: relative;
}

.partner-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gradient-bg-1 {
  background: linear-gradient(135deg, #1a0533, #2d1b69, #1a0533);
}
.gradient-bg-2 {
  background: linear-gradient(135deg, #0a1628, #1b3a5c, #0a1628);
}
.gradient-bg-3 {
  background: linear-gradient(135deg, #1a2200, #3d5c00, #1a2200);
}
.gradient-bg-4 {
  background: linear-gradient(135deg, #2a0a0a, #5c1b1b, #2a0a0a);
}

.partner-name-big {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.partner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.partner-info {
  padding: 20px;
}

.partner-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.partner-info p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

/* === WELCOME GRID === */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-grid.reverse {
  direction: rtl;
}

.welcome-grid.reverse > * {
  direction: ltr;
}

.welcome-text p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.welcome-text .section-title {
  margin-bottom: 24px;
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.glow-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}

.glow-effect { background: var(--gold); top: 20%; left: 10%; }
.glow-effect.purple { background: var(--purple); top: 10%; right: 10%; left: auto; }
.glow-effect.green { background: var(--emerald); top: 30%; left: 20%; }
.glow-effect.gold { background: var(--gold); top: 20%; right: 20%; left: auto; }

.placeholder-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.4;
  border: 1px solid var(--border);
}

.casino-img {
  background: linear-gradient(135deg, #1a0533 0%, #12122e 50%, #0a1628 100%);
  color: rgba(255,255,255,0.1);
}

.mobile-img {
  background: linear-gradient(135deg, #12122e 0%, #1a0533 50%, #12122e 100%);
  color: rgba(255,255,255,0.1);
}

.fairness-img {
  background: linear-gradient(135deg, #0a2818 0%, #12122e 50%, #0a1628 100%);
  color: rgba(255,255,255,0.1);
}

.support-img {
  background: linear-gradient(135deg, #2a1a00 0%, #12122e 50%, #1a0533 100%);
  color: rgba(255,255,255,0.1);
}

.feature-list {
  list-style: none;
  margin-top: 16px;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 700;
}

/* === GAME CARDS === */
.games-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s;
}

.game-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
}

.game-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-suit {
  font-size: 2.2rem;
}

.poker-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.slot-icon {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.roulette-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.baccarat-icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.game-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.game-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* === COMPETITION === */
.competition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.comp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
}

.comp-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.comp-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.comp-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.comp-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* === FAIRNESS === */
.fairness-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ff-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.ff-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-white);
}

.ff-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* === API SECTION === */
.api-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.api-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}

.api-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.08);
}

.api-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.api-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.api-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* === SUPPORT SECTION === */
.support-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
}

.channel-icon {
  font-size: 1.3rem;
}

/* === CTA === */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(251, 191, 36, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.site-footer {
  background: #060614;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-dim);
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .main-nav.active {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }

  .main-nav.active .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav.active .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(139, 92, 246, 0.05);
    margin-top: 4px;
    box-shadow: none;
  }

  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 30px; }
  .stat-num { font-size: 1.5rem; }

  .welcome-grid,
  .welcome-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .support-channels {
    grid-template-columns: 1fr;
  }

  .section { padding: 60px 0; }

  .placeholder-img { height: 260px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .competition-grid { grid-template-columns: 1fr; }
  .api-features { grid-template-columns: 1fr; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }

/* === BANNER GRID (2-column partner banners) === */
.featured-banner {
  text-align: center;
  margin-bottom: 24px;
}

.featured-banner img {
  max-width: 700px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.featured-banner img:hover {
  transform: scale(1.02);
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.banner-grid-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.banner-grid-item:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.banner-grid-item img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-grid-full {
  grid-column: 1 / -1;
  max-width: 100%;
  justify-self: center;
}

@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: 1fr;
  }
  .banner-grid-full {
    max-width: 100%;
  }
}

/* === SPECIAL PARTNER SECTION === */
.special-section {
  background: radial-gradient(ellipse at 50% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
}

.special-partner {
  text-align: center;
  margin-bottom: 60px;
}

.special-partner:last-child {
  margin-bottom: 0;
}

.special-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.special-banner {
  margin-bottom: 20px;
}

.special-banner img {
  max-width: 700px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.special-info {
  max-width: 500px;
  margin: 0 auto;
}

.special-info p {
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.8;
}

.special-info strong {
  color: var(--text-white);
}

/* === RANKING SECTION === */
.ranking-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
}

.guarantee-section {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}

/* === CONTENT IMAGES === */
.content-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
}

.game-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover .game-thumb {
  transform: scale(1.05);
}

/* === COMPETITION IMAGES === */
.comp-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.comp-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .comp-images {
    grid-template-columns: 1fr;
  }
  .banner-slide img {
    height: 120px;
  }
}

/* === PAGE HERO (subpages) === */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero .hero-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
}

/* === PARTNER FULL LIST === */
.partners-full-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partner-full-card {
  display: grid;
  grid-template-columns: auto 280px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  align-items: stretch;
}

.partner-full-card:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.pf-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.05);
  border-right: 1px solid var(--border);
}

.pf-rank.gold-rank {
  color: var(--gold);
  background: rgba(251, 191, 36, 0.05);
}

.pf-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pf-content {
  padding: 24px 28px;
}

.pf-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pf-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.pf-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--purple-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .partner-full-card {
    grid-template-columns: 1fr;
  }
  .pf-rank {
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
  }
  .pf-banner {
    height: 140px;
  }
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--purple);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

.faq-arrow {
  font-size: 1.3rem;
  color: var(--purple-light);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* === CONTACT FORM === */
.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-white);
}
