﻿/* =========================================================================
 CSS VARIABLES & THEME DEFINITIONS (Sleek Dark Space & Neon Amber/Gold)
 ========================================================================= */
:root {
  --bg-dark: #07090e;
  --bg-surface: rgba(14, 19, 31, 0.65);
  --bg-surface-hover: rgba(22, 30, 48, 0.85);

  /* Glowing Accents */
  --color-gold: #ffaa00;
  --color-gold-rgb: 255, 170, 0;
  --color-orange: #fb6409;
  --color-orange-rgb: 251, 100, 9;
  --color-accent: #ff7700;

  --text-main: #f3f5f9;
  --text-muted: #94a3b8;

  --font-outfit: "Outfit", "Noto Sans TC", sans-serif;
  --font-inter: "Inter", "Noto Sans TC", sans-serif;

  --glass-blur: blur(16px) saturate(180%);
  --border-glow: rgba(251, 100, 9, 0.25);
  --glow-shadow: 0 0 30px rgba(251, 100, 9, 0.15);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
  overflow-x: hidden;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-inter);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Neon grid vector background pattern */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(251, 100, 9, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 100, 9, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(251, 100, 9, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Container layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(251, 100, 9, 0.3);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* =========================================================================
 HEADER / STICKY BRAND BAR
 ========================================================================= */
.brand-header {
  position: sticky;
  top: 0;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.brand-logo-accent {
  color: var(--color-orange);
  text-shadow: 0 0 12px rgba(251, 100, 9, 0.4);
}

.brand-ticker {
  background: linear-gradient(
    90deg,
    rgba(251, 100, 9, 0.1) 0%,
    rgba(255, 170, 0, 0.1) 100%
  );
  border: 1px solid rgba(251, 100, 9, 0.3);
  border-radius: 9999px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(251, 100, 9, 0.05);
  animation: pulse-border 3s infinite ease-in-out;
}

.brand-ticker span {
  font-family: var(--font-outfit);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-gold) 100%
  );
  color: #000;
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(251, 100, 9, 0.35);
  transition: var(--transition-smooth);
}

.brand-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(251, 100, 9, 0.5);
}

/* =========================================================================
 SECTION BASICS
 ========================================================================= */
.section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.section-title {
  font-family: var(--font-outfit);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Bento/Row Layouts */
.grid-2col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.grid-reversed {
  grid-template-columns: 0.9fr 1.1fr;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--color-orange),
    var(--color-gold)
  );
}

.glass-card:hover {
  background: var(--bg-surface-hover);
  border-color: rgba(251, 100, 9, 0.35);
  transform: translateY(-4px);
}

/* =========================================================================
 SECTION 1: HERO / CONCIERGE 
 ========================================================================= */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 30%,
    rgba(251, 100, 9, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.profile-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.profile-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #000;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-img {
  transform: scale(1.05);
}

.profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-name {
  font-family: var(--font-outfit);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.profile-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  background: rgba(251, 100, 9, 0.15);
  border: 1px solid rgba(251, 100, 9, 0.4);
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.option-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.option-item:hover {
  background: rgba(251, 100, 9, 0.08);
  border-color: rgba(251, 100, 9, 0.25);
  transform: translateX(4px);
}

.option-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 9999px;
  box-shadow: 0 0 8px var(--color-orange);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.benefit-item strong {
  color: #fff;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* =========================================================================
 SECTION 2, 3, 4: VIP PLATFORMS (Chill88, Starwin, Shibet)
 ========================================================================= */
.platform-banner-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
}

.platform-banner {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.platform-banner-wrapper:hover .platform-banner {
  transform: scale(1.03);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}

.rewards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.reward-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 10px 16px;
  border-radius: 10px;
}

.reward-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.reward-value {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-orange);
}

.btn-group {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-accent) 100%
  );
  color: #fff;
  box-shadow: 0 4px 20px rgba(251, 100, 9, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(251, 100, 9, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =========================================================================
 SECTION 5: WITHDRAWAL TIMELINE STEPPER
 ========================================================================= */
.timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.timeline-card {
  background: rgba(14, 19, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-card:hover {
  background: rgba(22, 30, 48, 0.7);
  border-color: rgba(251, 100, 9, 0.2);
  transform: translateY(-4px);
}

.timeline-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 100, 9, 0.1);
  border: 1px solid rgba(251, 100, 9, 0.3);
  color: var(--color-orange);
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-card:hover .timeline-number {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(251, 100, 9, 0.4);
}

.timeline-badge {
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.timeline-title {
  font-family: var(--font-outfit);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.timeline-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================================
 FOOTER
 ========================================================================= */
.brand-footer {
  background: #040508;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-outfit);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto 24px auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

/* =========================================================================
 FLOATING CTA PANEL (For Instant Access)
 ========================================================================= */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(251, 100, 9, 0.4);
  border-radius: 9999px;
  padding: 6px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(251, 100, 9, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bounce 4s infinite ease-in-out;
}

.floating-text {
  padding-left: 16px;
  font-family: var(--font-outfit);
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}

.floating-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-gold) 100%
  );
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(251, 100, 9, 0.4);
  transition: var(--transition-smooth);
}

.floating-btn svg {
  width: 18px;
  height: 18px;
  color: #000;
  transition: var(--transition-smooth);
}

.floating-cta:hover .floating-btn {
  transform: rotate(45deg);
}

/* =========================================================================
 KEYFRAMES / ANIMATIONS
 ========================================================================= */
@keyframes pulse-border {
  0%,
  100% {
    border-color: rgba(251, 100, 9, 0.3);
    box-shadow: 0 0 15px rgba(251, 100, 9, 0.05);
  }
  50% {
    border-color: rgba(255, 170, 0, 0.7);
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.2);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* =========================================================================
 RESPONSIVE MEDIA QUERIES
 ========================================================================= */
@media (max-width: 992px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .grid-reversed {
    display: flex;
    flex-direction: column-reverse;
  }
  .timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .brand-ticker {
    display: none;
  }
  .brand-logo {
    font-size: 18px;
  }
  .section-title {
    font-size: 26px;
  }
  .glass-card {
    padding: 24px;
  }
  .options-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .btn-group {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================================================================
   VERIFICATION SLIDER MODAL STYLING
   ========================================================================= */
.slider-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 8, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.slider-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-modal-content {
  width: 90%;
  max-width: 400px;
  background: var(--bg-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(251, 100, 9, 0.4);
  box-shadow:
    0 20px 50px rgba(251, 100, 9, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-modal.active .slider-modal-content {
  transform: scale(1);
}

.slider-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-modal-close:hover {
  color: var(--color-orange);
}

.slider-modal-header {
  margin-bottom: 24px;
}

.slider-modal-icon {
  font-size: 32px;
  margin-bottom: 12px;
  animation: float 3s infinite ease-in-out;
}

.slider-modal-header h3 {
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.slider-modal-header p {
  color: var(--text-muted);
  font-size: 13.5px;
}

.slider-track {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-bg-text {
  font-family: var(--font-outfit);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  z-index: 1;
  pointer-events: none;
}

.slider-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(251, 100, 9, 0.2) 0%,
    rgba(255, 170, 0, 0.4) 100%
  );
  width: 0;
  z-index: 2;
  pointer-events: none;
  transition: width 0.1s ease;
}

.slider-thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 46px;
  height: 46px;
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-gold) 100%
  );
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(251, 100, 9, 0.4);
  transition:
    left 0.1s ease,
    background 0.3s ease;
}

.slider-thumb:active {
  cursor: grabbing;
}

.slider-thumb svg {
  color: #000;
  transition: transform 0.3s ease;
}

.slider-track.success {
  border-color: #10b981;
}

.slider-track.success .slider-thumb {
  background: #10b981;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.slider-track.success .slider-bg-text {
  color: #10b981;
  font-weight: 800;
}

      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
      }

/* =========================================================================
   SITE NAVIGATION (Sub-pages)
   ========================================================================= */
.brand-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.brand-nav a {
  font-family: var(--font-outfit);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 9999px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.brand-nav a:hover,
.brand-nav a.active {
  color: var(--color-gold);
  background: rgba(251, 100, 9, 0.1);
  border: 1px solid rgba(251, 100, 9, 0.25);
}

.brand-header-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-row-nav {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 10px;
}

/* Page hero */
.page-hero {
  padding: 48px 0 24px;
  text-align: center;
  position: relative;
}

.page-hero .section-title {
  justify-content: center;
  width: 100%;
}

.page-hero .section-subtitle {
  margin: 0 auto 0;
}

/* Game category grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.game-card {
  background: var(--bg-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-card:hover {
  background: var(--bg-surface-hover);
  border-color: rgba(251, 100, 9, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--glow-shadow);
}

.game-card-icon {
  font-size: 40px;
  line-height: 1;
}

.game-card-title {
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.game-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.game-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(251, 100, 9, 0.12);
  border: 1px solid rgba(251, 100, 9, 0.3);
  color: var(--color-orange);
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.platform-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: var(--transition-smooth);
}

.platform-card:hover {
  border-color: rgba(251, 100, 9, 0.35);
  transform: translateY(-4px);
}

.platform-card-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .platform-cards {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .brand-row-nav {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 600px) {
  .brand-action-btn span.btn-text-long {
    display: none;
  }
}
