/* ============================================
   东升国际 - 主样式表 ds-style.css
   设计风格: 金色日出晨曦风 (Golden Sunrise Luxury)
   CSS前缀: ds-
   ============================================ */

/* --- CSS Variables --- */
:root {
  --ds-gold: #D4AF37;
  --ds-black: #1A1A1A;
  --ds-red: #E53935;
  --ds-white: #FFFFFF;
  --ds-bg: #121212;
  --ds-text: #F5F5F5;
  --ds-text-secondary: #A0A0A0;
  --ds-gold-bright: #FFD700;
  --ds-gold-light: #F0E68C;
  --ds-gold-dark: #BDB76B;
  --ds-radius: 4px;
  --ds-shadow-gold: 0 10px 30px rgba(212,175,55,0.25);
  --ds-font-title: 'Trajan Pro', 'Times New Roman', Georgia, serif;
  --ds-font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --ds-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F0E68C 50%, #D4AF37 100%);
  --ds-gradient-gold-dark: linear-gradient(135deg, #B8960C 0%, #D4AF37 50%, #B8960C 100%);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ds-font-body);
  background-color: var(--ds-bg);
  color: var(--ds-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ds-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ds-gold-bright);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ds-font-title);
  color: var(--ds-text);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--ds-text-secondary);
}

/* --- Container --- */
.ds-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section --- */
.ds-section {
  padding: 80px 0;
  position: relative;
}

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

.ds-section-title h2 {
  font-size: 2.5rem;
  background: var(--ds-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 15px;
}

.ds-section-title p {
  font-size: 1.1rem;
  color: var(--ds-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Gold Divider --- */
.ds-gold-divider {
  width: 80px;
  height: 2px;
  background: var(--ds-gradient-gold);
  margin: 20px auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.ds-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid;
  border-image: var(--ds-gradient-gold) 1;
  transition: all 0.3s ease;
}

.ds-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  height: 70px;
}

.ds-logo {
  font-family: var(--ds-font-title);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--ds-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ds-logo-gold {
  color: var(--ds-gold);
}

.ds-nav-links {
  display: flex;
  list-style: none;
  gap: 5px;
  align-items: center;
}

.ds-nav-links li a {
  color: var(--ds-text-secondary);
  padding: 8px 14px;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.ds-nav-links li a:hover,
.ds-nav-links li a.ds-active {
  color: var(--ds-gold);
}

.ds-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--ds-gold);
  transition: width 0.3s ease;
}

.ds-nav-links li a:hover::after,
.ds-nav-links li a.ds-active::after {
  width: 80%;
}

.ds-btn-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--ds-gradient-gold);
  color: var(--ds-black);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--ds-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.ds-btn-cta:hover {
  box-shadow: var(--ds-shadow-gold);
  transform: translateY(-2px);
  color: var(--ds-black);
}

/* Hamburger Menu */
.ds-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.ds-hamburger span {
  width: 25px;
  height: 2px;
  background: var(--ds-gold);
  transition: all 0.3s ease;
}

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

.ds-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ds-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.4) 40%, rgba(18,18,18,0.8) 100%);
}

.ds-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  animation: ds-pulse-glow 4s ease-in-out infinite;
}

@keyframes ds-pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.ds-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.ds-hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--ds-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--ds-gold);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.ds-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ds-hero h1 .ds-gold-text {
  background: var(--ds-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-hero-subtitle {
  font-size: 1.15rem;
  color: var(--ds-text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.ds-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.ds-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ds-gradient-gold);
  color: var(--ds-black);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--ds-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-btn-primary:hover {
  box-shadow: var(--ds-shadow-gold);
  transform: translateY(-3px);
  color: var(--ds-black);
}

.ds-btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--ds-gold);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--ds-radius);
  border: 2px solid var(--ds-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-btn-outline:hover {
  background: rgba(212,175,55,0.1);
  box-shadow: var(--ds-shadow-gold);
  color: var(--ds-gold);
}

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

.ds-stat-item {
  text-align: center;
}

.ds-stat-number {
  font-family: var(--ds-font-title);
  font-size: 2rem;
  color: var(--ds-gold);
  display: block;
}

.ds-stat-label {
  font-size: 0.85rem;
  color: var(--ds-text-secondary);
}

/* ============================================
   GAME CARDS
   ============================================ */
.ds-games {
  background: var(--ds-bg);
}

.ds-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ds-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ds-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ds-game-card {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--ds-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.ds-game-card:hover {
  border-color: var(--ds-gold);
  box-shadow: var(--ds-shadow-gold);
  transform: translateY(-5px);
}

.ds-game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ds-game-card-body {
  padding: 20px;
}

.ds-game-card-body h3 {
  font-size: 1.2rem;
  color: var(--ds-text);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.ds-game-card:hover .ds-game-card-body h3 {
  color: var(--ds-gold);
}

.ds-game-card-body p {
  font-size: 0.9rem;
  color: var(--ds-text-secondary);
  margin-bottom: 15px;
}

.ds-game-list {
  list-style: none;
  margin-bottom: 15px;
}

.ds-game-list li {
  font-size: 0.85rem;
  color: var(--ds-text-secondary);
  padding: 3px 0;
  padding-left: 15px;
  position: relative;
}

.ds-game-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--ds-gold);
  font-size: 0.6rem;
  top: 5px;
}

.ds-btn-sm {
  display: inline-block;
  padding: 8px 20px;
  background: var(--ds-gradient-gold);
  color: var(--ds-black);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--ds-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-btn-sm:hover {
  box-shadow: var(--ds-shadow-gold);
  color: var(--ds-black);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.ds-video {
  background: var(--ds-bg);
  position: relative;
}

.ds-video-card {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--ds-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ds-video-card:hover {
  border-color: var(--ds-gold);
  box-shadow: var(--ds-shadow-gold);
}

.ds-video-wrapper {
  position: relative;
  width: 100%;
}

.ds-video-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}

.ds-video-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--ds-gold);
  padding: 4px 10px;
  border-radius: var(--ds-radius);
  font-size: 0.8rem;
}

.ds-video-info {
  padding: 20px;
}

.ds-video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ds-video-info p {
  font-size: 0.9rem;
}

/* ============================================
   RANKING TABLE
   ============================================ */
.ds-ranking {
  background: var(--ds-bg);
}

.ds-ranking-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.ds-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  padding: 40px 0;
}

.ds-podium-item {
  text-align: center;
}

.ds-podium-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--ds-gold);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ds-font-title);
  font-size: 1.2rem;
  color: var(--ds-gold);
  background: rgba(212,175,55,0.1);
}

.ds-podium-bar {
  width: 80px;
  border-radius: var(--ds-radius) var(--ds-radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ds-font-title);
  font-size: 1.5rem;
  color: var(--ds-black);
  font-weight: 700;
}

.ds-podium-bar-1 {
  height: 120px;
  background: var(--ds-gradient-gold);
}

.ds-podium-bar-2 {
  height: 90px;
  background: linear-gradient(135deg, #C0C0C0, #E8E8E8, #C0C0C0);
}

.ds-podium-bar-3 {
  height: 70px;
  background: linear-gradient(135deg, #CD7F32, #E8A85C, #CD7F32);
}

.ds-podium-name {
  font-size: 0.85rem;
  color: var(--ds-text);
  margin-top: 8px;
}

.ds-ranking-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--ds-radius);
  overflow: hidden;
}

.ds-ranking-table th {
  background: rgba(212,175,55,0.1);
  color: var(--ds-gold);
  padding: 12px 15px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.ds-ranking-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: var(--ds-text-secondary);
}

.ds-ranking-table tr:hover td {
  background: rgba(212,175,55,0.05);
}

.ds-rank-1 { color: #FFD700 !important; font-weight: 700; }
.ds-rank-2 { color: #F0E68C !important; font-weight: 700; }
.ds-rank-3 { color: #BDB76B !important; font-weight: 700; }

/* ============================================
   VIP SECTION
   ============================================ */
.ds-vip {
  background: var(--ds-bg);
  position: relative;
}

.ds-vip-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ds-vip-features {
  list-style: none;
}

.ds-vip-features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: var(--ds-text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ds-vip-features li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--ds-gold);
  font-size: 1rem;
}

.ds-vip-entrance {
  text-align: center;
  padding: 40px;
  background: rgba(26,26,26,0.9);
  border: 2px solid var(--ds-gold);
  border-radius: var(--ds-radius);
  position: relative;
  overflow: hidden;
}

.ds-vip-entrance::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 50%);
  animation: ds-rotate-glow 10s linear infinite;
}

@keyframes ds-rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ds-vip-entrance img {
  max-width: 100%;
  border-radius: var(--ds-radius);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   JACKPOT SECTION
   ============================================ */
.ds-jackpot {
  background: var(--ds-bg);
}

.ds-jackpot-card {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--ds-radius);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.ds-jackpot-card:hover {
  border-color: var(--ds-gold);
  box-shadow: var(--ds-shadow-gold);
  transform: translateY(-5px);
}

.ds-jackpot-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ds-jackpot-card-body {
  padding: 20px;
}

.ds-jackpot-amount {
  font-family: var(--ds-font-title);
  font-size: 1.8rem;
  color: var(--ds-gold);
  margin: 10px 0;
}

/* ============================================
   AMBASSADOR SECTION
   ============================================ */
.ds-ambassador {
  background: var(--ds-bg);
}

.ds-ambassador-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ds-ambassador-img {
  border-radius: var(--ds-radius);
  border: 2px solid rgba(212,175,55,0.3);
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

.ds-ambassador-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ds-text);
  line-height: 1.8;
  border-left: 3px solid var(--ds-gold);
  padding-left: 20px;
  margin: 20px 0;
}

.ds-ambassador-signature {
  font-family: var(--ds-font-title);
  color: var(--ds-gold);
  font-size: 1.3rem;
  margin-top: 15px;
}

/* ============================================
   PROMO SECTION
   ============================================ */
.ds-promo {
  background: var(--ds-bg);
}

.ds-promo-card {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: var(--ds-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ds-promo-card:hover {
  border-color: var(--ds-red);
  box-shadow: 0 10px 30px rgba(229,57,53,0.2);
  transform: translateY(-5px);
}

.ds-promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ds-promo-card-body {
  padding: 20px;
}

.ds-promo-card-body h3 {
  color: var(--ds-red);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ds-promo-time {
  font-size: 0.8rem;
  color: var(--ds-gold);
  margin-bottom: 10px;
}

.ds-btn-red {
  display: inline-block;
  padding: 8px 20px;
  background: var(--ds-red);
  color: var(--ds-white);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--ds-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-btn-red:hover {
  background: #C62828;
  color: var(--ds-white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ds-testimonials {
  background: var(--ds-bg);
}

.ds-testimonial-card {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--ds-radius);
  padding: 25px;
  transition: all 0.3s ease;
}

.ds-testimonial-card:hover {
  border-color: var(--ds-gold);
}

.ds-testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.ds-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ds-gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ds-font-title);
  font-size: 1.2rem;
  color: var(--ds-black);
  font-weight: 700;
}

.ds-testimonial-name {
  font-weight: 600;
  color: var(--ds-text);
  font-size: 1rem;
}

.ds-testimonial-date {
  font-size: 0.8rem;
  color: var(--ds-text-secondary);
}

.ds-testimonial-content {
  font-size: 0.95rem;
  color: var(--ds-text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.ds-testimonial-amount {
  font-family: var(--ds-font-title);
  color: var(--ds-gold);
  font-size: 1.3rem;
}

/* ============================================
   TRUST / CERTIFICATION
   ============================================ */
.ds-trust {
  background: rgba(26,26,26,0.5);
  border-top: 1px solid rgba(212,175,55,0.2);
}

.ds-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.ds-trust-item {
  text-align: center;
  padding: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ds-trust-item:hover {
  opacity: 1;
}

.ds-trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ds-gold);
  border-radius: 50%;
  font-family: var(--ds-font-title);
  font-size: 0.7rem;
  color: var(--ds-gold);
  text-align: center;
  line-height: 1.2;
  padding: 5px;
}

.ds-trust-item span {
  font-size: 0.8rem;
  color: var(--ds-text-secondary);
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.ds-footer {
  background: var(--ds-black);
  border-top: 2px solid;
  border-image: var(--ds-gradient-gold) 1;
  padding-top: 60px;
}

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

.ds-footer-brand .ds-logo {
  margin-bottom: 15px;
}

.ds-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.ds-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.ds-footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ds-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-gold);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.ds-footer-social a:hover {
  background: var(--ds-gold);
  color: var(--ds-black);
}

.ds-footer h4 {
  font-size: 1.1rem;
  color: var(--ds-gold);
  margin-bottom: 20px;
  font-family: var(--ds-font-body);
  font-weight: 700;
}

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

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

.ds-footer-links li a {
  color: var(--ds-text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.ds-footer-links li a:hover {
  color: var(--ds-gold);
}

.ds-footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.ds-footer-seo {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ds-footer-seo p {
  font-size: 0.75rem;
  color: var(--ds-text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.ds-footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ds-footer-bottom p {
  font-size: 0.8rem;
  color: var(--ds-text-secondary);
  margin-bottom: 5px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.ds-breadcrumb {
  padding: 15px 0;
  margin-top: 70px;
}

.ds-breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.ds-breadcrumb-list li {
  font-size: 0.85rem;
  color: var(--ds-text-secondary);
}

.ds-breadcrumb-list li a {
  color: var(--ds-gold);
}

.ds-breadcrumb-list li + li::before {
  content: '>';
  margin-right: 8px;
  color: var(--ds-text-secondary);
}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.ds-page-hero {
  position: relative;
  padding: 120px 0 60px;
  text-align: center;
  overflow: hidden;
  margin-top: 70px;
}

.ds-page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.ds-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.7) 100%);
}

.ds-page-hero-content {
  position: relative;
  z-index: 2;
}

.ds-page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.ds-page-hero h1 .ds-gold-text {
  background: var(--ds-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   INNER PAGE CONTENT
   ============================================ */
.ds-page-content {
  padding: 60px 0;
}

.ds-page-content h2 {
  color: var(--ds-gold);
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.ds-page-content h3 {
  color: var(--ds-text);
  font-size: 1.3rem;
  margin: 30px 0 15px;
}

.ds-page-content p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.ds-page-content ul, .ds-page-content ol {
  margin: 15px 0 25px 20px;
}

.ds-page-content li {
  margin-bottom: 8px;
  color: var(--ds-text-secondary);
  line-height: 1.7;
}

.ds-content-img {
  width: 100%;
  border-radius: var(--ds-radius);
  border: 1px solid rgba(212,175,55,0.2);
  margin: 20px 0;
}

/* ============================================
   VIP PAGE SPECIAL
   ============================================ */
.ds-vip-gate {
  text-align: center;
  padding: 60px 20px;
}

.ds-vip-gate-img {
  max-width: 600px;
  margin: 0 auto 30px;
  border-radius: var(--ds-radius);
}

.ds-vip-form {
  max-width: 400px;
  margin: 0 auto;
}

.ds-form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--ds-radius);
  color: var(--ds-text);
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: var(--ds-font-body);
  transition: border-color 0.3s ease;
}

.ds-form-input:focus {
  outline: none;
  border-color: var(--ds-gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

.ds-form-input::placeholder {
  color: var(--ds-text-secondary);
}

.ds-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--ds-gradient-gold);
  color: var(--ds-black);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--ds-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--ds-font-body);
}

.ds-form-submit:hover {
  box-shadow: var(--ds-shadow-gold);
}

/* ============================================
   APP DOWNLOAD PAGE
   ============================================ */
.ds-app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ds-app-features {
  list-style: none;
  margin: 30px 0;
}

.ds-app-features li {
  padding: 15px 0;
  padding-left: 40px;
  position: relative;
  font-size: 1.05rem;
  color: var(--ds-text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ds-app-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--ds-gold);
  font-size: 1.2rem;
}

.ds-app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ds-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(26,26,26,0.9);
  border: 1px solid var(--ds-gold);
  border-radius: var(--ds-radius);
  color: var(--ds-text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.ds-app-btn:hover {
  background: var(--ds-gold);
  color: var(--ds-black);
}

.ds-app-mockup {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.ds-legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.ds-legal-content h2 {
  font-size: 1.5rem;
  color: var(--ds-gold);
  margin: 40px 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.ds-legal-content p {
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.ds-float-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.ds-float-up.ds-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ds-number-scroll {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.ds-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(18,18,18,0.98);
  z-index: 999;
  padding: 30px;
}

.ds-mobile-menu.ds-menu-open {
  display: block;
}

.ds-mobile-menu ul {
  list-style: none;
}

.ds-mobile-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ds-mobile-menu ul li a {
  display: block;
  padding: 15px 0;
  color: var(--ds-text);
  font-size: 1.1rem;
}

.ds-mobile-menu ul li a:hover {
  color: var(--ds-gold);
}

/* ============================================
   GAME GALLERY (inner pages)
   ============================================ */
.ds-game-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.ds-game-gallery-item {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--ds-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ds-game-gallery-item:hover {
  border-color: var(--ds-gold);
  box-shadow: var(--ds-shadow-gold);
}

.ds-game-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ds-game-gallery-item .ds-game-gallery-info {
  padding: 15px;
}

.ds-game-gallery-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.ds-game-gallery-item p {
  font-size: 0.85rem;
}

/* ============================================
   FAQ SECTION (for inner pages)
   ============================================ */
.ds-faq-item {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--ds-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.ds-faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ds-text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.ds-faq-question:hover {
  color: var(--ds-gold);
}

.ds-faq-question .ds-faq-icon {
  color: var(--ds-gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.ds-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ds-faq-answer.ds-faq-open {
  padding: 0 20px 18px;
  max-height: 500px;
}

.ds-faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Sunrise border effect */
.ds-sunrise-border {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.ds-sunrise-border::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: var(--ds-gradient-gold);
  border-radius: inherit;
  z-index: -1;
}
