@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  /* Dark theme for gaming site */
  --bg-dark: #0a0e0f;
  --bg-card: #141a1c;
  --bg-card-hover: #1a2326;
  
  /* Accent colors - gold / orange / red */
  --gold: #ffd700;
  --gold-light: #ffed4e;
  --gold-dark: #cc9900;
  --orange: #ff6b35;
  --orange-light: #ff8c5a;
  --red: #ff4444;
  --red-light: #ff6666;
  
  /* Secondary colors */
  --accent-green: #00ff88;
  --accent-blue: #00d4ff;
  
  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #b8c5cc;
  --text-muted: #6b7a85;
  
  /* Aliases for static HTML compatibility */
  --muted: var(--text-muted);
  --accent: var(--gold);
  --card: var(--bg-card);
  
  /* Borders and shadows */
  --border: #1f2933;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  
  --radius: 12px;
  --radius-lg: 16px;
  --max-width: 1400px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0a0e0f 0%, #141a1c 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

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

/* ===== Header ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.brand h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

nav.primary-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list,
.nav-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus-visible {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

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

.nav-list > li > a:hover::after {
  width: 60%;
}

/* Current/selected menu item (top-level) */
.nav-list > li.current-menu-item > a,
.nav-list > li.current-menu-ancestor > a,
.nav-list > li.current > a {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}
.nav-list > li.current-menu-item > a::after,
.nav-list > li.current-menu-ancestor > a::after,
.nav-list > li.current > a::after {
  width: 60%;
}

/* Current/selected submenu item */
.nav-list ul li.current-menu-item a,
.nav-list ul li.current a {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.nav-list > li > ul {
  position: absolute;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  top: 100%;
  left: 0;
  z-index: 100;
  margin-top: 4px;
}

.nav-list ul ul {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 4px;
  min-width: 200px;
}

.nav-list > li:hover > ul,
.nav-list > li:focus-within > ul {
  display: flex;
}

.nav-list ul li:hover > ul,
.nav-list ul li:focus-within > ul {
  display: flex;
}

.nav-list ul li a {
  padding: 10px 14px;
  display: block;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-list ul li a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  transform: translateX(4px);
}

/* ===== Hero Section ===== */
.hero-casino {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  overflow: hidden;
}

.hero-casino::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  margin: 0 0 20px 0;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-text .tagline {
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-play:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

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

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
  pointer-events: none;
}

/* ===== Games Section ===== */
.games-section {
  max-width: var(--max-width);
  margin: 80px auto;
  padding: 0 24px;
}

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

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}

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

.game-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 107, 53, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.game-card:hover::before {
  opacity: 1;
}

.game-card-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.game-card-content {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.game-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

.game-card-provider {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-play-game {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-play-game:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 107, 53, 0.4);
  }
}

/* Game card hover effect */
.game-card:hover .game-card-image {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.game-card-image {
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* ===== Promotion & Bonus Section ===== */
.promotions-section {
  max-width: var(--max-width);
  margin: 80px auto;
  padding: 0 24px;
}

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

.promo-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.promo-icon {
  font-size: 48px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.promo-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.promo-amount {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.promo-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* ===== Platform Features ===== */
.features-section {
  max-width: var(--max-width);
  margin: 80px auto;
  padding: 0 24px;
}

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

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--gold);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== App Download Section ===== */
.app-section {
  max-width: var(--max-width);
  margin: 80px auto;
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 107, 53, 0.05));
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.app-text h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  margin: 0 0 20px 0;
  color: var(--gold);
}

.app-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-image {
  text-align: center;
}

.app-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 3px solid var(--gold);
  margin-top: 80px;
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.footer-security {
  font-size: 13px;
  color: var(--accent-green);
  margin: 12px 0 8px 0;
  font-weight: 600;
}

.footer-license {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 24px;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 12px 0;
}

.footer-warning {
  font-size: 12px;
  color: var(--orange);
  margin: 0;
  font-weight: 600;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  font-size: 12px;
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Category Layout ===== */
.category-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.category-hero {
  text-align: center;
  margin: 40px 0 60px;
  padding: 40px 20px;
}

.category-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.category-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.category-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-image {
  transform: scale(1.1);
}

.category-card-content {
  padding: 24px;
}

.category-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

.category-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 20px 0;
}

.category-card .btn {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--bg-dark);
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.category-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

/* ===== Service Layout ===== */
.service-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.service-hero {
  text-align: center;
  margin: 40px 0 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.service-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 50px auto;
  max-width: var(--max-width);
  padding: 0 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--gold);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.service-steps {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-steps h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--gold);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: step-counter;
}

.step-item {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  padding-left: 80px;
  position: relative;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 24px;
  top: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
}

.step-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

.step-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
}

/* ===== Article Layout ===== */
.article-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-layout article {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}

.article-featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-meta {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.article-content {
  padding: 40px 32px;
}

.article-content h1 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  margin: 0 0 24px 0;
  color: var(--gold);
}

.article-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px 0;
  color: var(--gold);
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 16px 0;
  color: var(--text-primary);
}

.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--radius);
  font-style: italic;
  color: var(--text-secondary);
}

.author-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 40px 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.author-info h4 {
  margin: 0 0 8px 0;
  color: var(--gold);
  font-size: 18px;
}

.author-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== FAQ Layout ===== */
.faq-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-hero {
  text-align: center;
  margin: 40px 0 60px;
}

.faq-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-hero p {
  font-size: 20px;
  color: var(--text-secondary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

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

.faq-question::after {
  content: "+";
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== Contact Layout ===== */
.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.contact-hero {
  text-align: center;
  margin: 40px 0 60px;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  margin: 0 0 20px 0;
  color: var(--gold);
}

.contact-hero p {
  font-size: 20px;
  color: var(--text-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-form {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: var(--gold);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--gold);
}

.info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.info-card a {
  color: var(--gold);
  text-decoration: underline;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  margin: 0 8px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  nav.primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--border);
    padding: 20px;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
  }
  
  nav.primary-nav[style*="flex"] {
    display: flex !important;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-list > li {
    width: 100%;
  }
  
  .nav-list > li > a {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-list ul {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .nav-list ul li a {
    padding-left: 32px;
  }
  
  .hero-content,
  .app-content {
    grid-template-columns: 1fr;
  }
  
  .games-grid,
  .promos-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta,
  .app-buttons {
    flex-direction: column;
  }
  
  .btn-play {
    width: 100%;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .category-grid,
  .service-features,
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    padding-left: 32px;
  }
  
  .step-item::before {
    left: 16px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
