/* ============================================
   LILOMIXPLAY — EGYPT LUXURY THEME
   Premium Social Casino Stylesheet
   ============================================ */

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

:root {
  --deep-black: #050403;
  --desert-shadow: #1a140f;
  --sandstone-dark: #2a1f17;
  --glass-surface: rgba(255,255,255,0.05);
  --glass-border: rgba(212,175,55,0.15);
  --royal-gold: #D4AF37;
  --burnt-sand: #C19A6B;
  --pharaoh-red: #8B1E1E;
  --ancient-turquoise: #3FA7A3;
  --soft-amber: #FFB347;
  --text-primary: #f0e6d3;
  --text-secondary: #a89a85;
  --text-muted: #6b5f52;
  --gold-gradient: linear-gradient(135deg, #D4AF37, #FFB347);
  --pharaoh-gradient: linear-gradient(135deg, #8B1E1E, #2a1f17);
  --sidebar-width: 76px;
  --mobile-header-height: 64px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: var(--deep-black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

/* ---- HIEROGLYPH BACKGROUND PATTERN ---- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='20' font-size='12' fill='%23D4AF37' opacity='0.03' font-family='serif'%3E𓂀%3C/text%3E%3Ctext x='35' y='45' font-size='10' fill='%23D4AF37' opacity='0.02' font-family='serif'%3E𓃭%3C/text%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--deep-black);
}
::-webkit-scrollbar-thumb {
  background: var(--sandstone-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burnt-sand);
}

/* ---- GOLD TEXT ---- */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(26, 20, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.sidebar-logo {
  margin-bottom: 40px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.sidebar-logo:hover .logo-icon {
  transform: scale(1.1);
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sidebar-item {
  position: relative;
}

.sidebar-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-item a svg {
  width: 20px;
  height: 20px;
}

.sidebar-item a:hover,
.sidebar-item.active a {
  background: rgba(212, 175, 55, 0.12);
  color: var(--royal-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.sidebar-item.active a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--gold-gradient);
  border-radius: 0 3px 3px 0;
}

.sidebar-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--desert-shadow);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1001;
}

.sidebar-item a:hover .sidebar-tooltip {
  opacity: 1;
  visibility: visible;
  left: calc(100% + 18px);
}

.sidebar-bottom {
  margin-top: auto;
}

.sidebar-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-bottom a svg {
  width: 20px;
  height: 20px;
}

.sidebar-bottom a:hover,
.sidebar-bottom a.active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--royal-gold);
}

.sidebar-bottom .sidebar-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--desert-shadow);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1001;
}

.sidebar-bottom a:hover .sidebar-tooltip {
  opacity: 1;
  visibility: visible;
  left: calc(100% + 18px);
}

/* ---- MOBILE HEADER ---- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mobile-header-height);
  background: rgba(26, 20, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-small {
  width: 30px;
  height: 30px;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- MOBILE NAV OVERLAY ---- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: var(--mobile-header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 4, 3, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  padding: 40px 20px;
}

.mobile-nav-link {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--royal-gold);
  background: rgba(212, 175, 55, 0.08);
}

.mobile-nav-legal {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.mobile-nav-legal a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.mobile-nav-legal a:hover {
  color: var(--royal-gold);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  margin-left: var(--sidebar-width);
  position: relative;
  z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #1a140f;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: var(--gold-gradient);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}

.btn-glow:hover::after {
  opacity: 0.5;
}

.btn-secondary {
  background: transparent;
  color: var(--royal-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--royal-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 30, 30, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0806 0%, #1a140f 50%, #050403 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(5, 4, 3, 0.6) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--royal-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--royal-gold);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 179, 71, 0.06);
  border: 1px solid rgba(255, 179, 71, 0.15);
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.legal-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-text strong {
  color: var(--soft-amber);
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--royal-gold), transparent);
  animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-indicator span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal-gold);
  margin-bottom: 16px;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
  padding: 100px 0 80px;
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.game-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.game-frame-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.game-glow-border {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 179, 71, 0.1), rgba(212, 175, 55, 0.3));
  z-index: 0;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.game-inner {
  position: relative;
  z-index: 1;
  background: var(--desert-shadow);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-info-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.game-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 100px 0;
  position: relative;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.08);
}

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

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.feature-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Cinzel', serif;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: 100px 0;
  position: relative;
}

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

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

.experience-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-primary);
}

.experience-list li svg {
  flex-shrink: 0;
}

.visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 24px;
  padding: 50px 40px;
  overflow: hidden;
}

.visual-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.visual-content {
  position: relative;
  z-index: 1;
}

.visual-hieroglyphs {
  font-size: 28px;
  letter-spacing: 8px;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.4;
  line-height: 2;
  word-break: break-all;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */
.responsible-section {
  padding: 100px 0;
}

.responsible-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.responsible-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.4;
}

.responsible-icon {
  margin-bottom: 24px;
}

.responsible-icon svg {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.responsible-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.responsible-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--royal-gold);
}

.badge-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 36px;
  height: 36px;
}

.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--royal-gold);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  max-width: 700px;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.65 !important;
  opacity: 0.7;
}

/* ============================================
   PAGE HERO (SUB PAGES)
   ============================================ */
.page-hero {
  padding: 120px 60px 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0806 0%, var(--deep-black) 100%);
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 18px;
}

.page-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   PAGE CONTENT (SUB PAGES)
   ============================================ */
.page-content-section {
  padding: 60px 0 100px;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 48px;
}

.content-block h2 {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--text-primary);
}

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

.legal-content h2 {
  margin-top: 36px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.styled-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--royal-gold);
  opacity: 0.6;
}

.styled-list li strong {
  color: var(--text-primary);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: 24px;
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

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

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

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-note {
  background: rgba(255, 179, 71, 0.05);
  border: 1px solid rgba(255, 179, 71, 0.12);
  border-radius: 14px;
  padding: 20px 24px;
}

.contact-note p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-note strong {
  color: var(--soft-amber);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .section-container {
    padding: 0 40px;
  }

  .hero {
    padding: 100px 40px 80px;
  }

  .features-grid {
    gap: 20px;
  }

  .experience-grid {
    gap: 40px;
  }

  .footer-container {
    padding: 0 40px;
  }

  .page-hero {
    padding: 100px 40px 50px;
  }

  .contact-grid {
    gap: 40px;
  }
}

/* Tablet small */
@media (max-width: 900px) {
  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding-top: var(--mobile-header-height);
  }

  .hero {
    padding: 80px 24px 60px;
    min-height: calc(100vh - var(--mobile-header-height));
  }

  .section-container {
    padding: 0 24px;
  }

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

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-links-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container {
    padding: 0 24px;
  }

  .page-hero {
    padding: 80px 24px 40px;
  }

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

  .game-inner {
    aspect-ratio: 16/11;
  }

  .responsible-card {
    padding: 40px 28px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding: 60px 18px 50px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-legal-notice {
    padding: 14px 16px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .section-container {
    padding: 0 16px;
  }

  .game-section {
    padding: 60px 0;
  }

  .game-wrapper {
    padding: 0;
  }

  .game-frame-container {
    border-radius: 12px;
  }

  .game-glow-border {
    border-radius: 14px;
  }

  .game-inner {
    border-radius: 12px;
    aspect-ratio: 4/3;
  }

  .game-info-bar {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .game-info-item {
    font-size: 12px;
  }

  .features-section {
    padding: 60px 0;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .experience-section {
    padding: 60px 0;
  }

  .visual-stats {
    gap: 14px;
  }

  .stat-number {
    font-size: 24px;
  }

  .responsible-section {
    padding: 60px 0;
  }

  .responsible-badges {
    gap: 20px;
  }

  .footer {
    padding: 40px 0 30px;
  }

  .footer-links-group {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-links-group .footer-col:last-child {
    grid-column: span 2;
  }

  .page-hero {
    padding: 60px 18px 30px;
  }

  .content-block {
    margin-bottom: 36px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .mobile-nav-link {
    font-size: 18px;
    padding: 12px 20px;
  }
}

/* Very small */
@media (max-width: 380px) {
  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .page-title {
    font-size: 24px;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .footer-links-group .footer-col:last-child {
    grid-column: span 1;
  }
}