/* ========================================
   Ormelvik - MODERN GAMING PLATFORM
   Color Palette: #FFD400, #FFC300, #FF8C00, #FF5F00
   ======================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Gaming Palette */
  --gold-1: #FFD400;
  --gold-2: #FFC300;
  --orange-1: #FF8C00;
  --orange-2: #FF5F00;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--gold-1) 0%, var(--orange-2) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
  --gradient-orange: linear-gradient(135deg, var(--orange-1) 0%, var(--orange-2) 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  
  /* Background Colors */
  --bg-dark: #0f0f1a;
  --bg-card: rgba(30, 30, 45, 0.8);
  --bg-elevated: #1a1a2e;
  --bg-surface: #252540;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-light: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Border & Effects */
  --border-glow: rgba(255, 212, 0, 0.3);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 212, 0, 0.2);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-elevated);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

/* Selection */
::selection {
  background: var(--orange-1);
  color: var(--bg-dark);
}

/* ========================================
   NAVIGATION - GLASS MORPHISM
   ======================================== */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 212, 0, 0.2);
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  padding: 0.5rem 0;
  background: rgba(15, 15, 26, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo a:hover {
  transform: translateY(-1px) scale(1.02);
}

.logo img {
  height: 46px;
  width: auto;
  max-width: 220px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 212, 0, 0.35));
  transition: filter 0.3s ease;
}

.logo a:hover img {
  filter: drop-shadow(0 0 18px rgba(255, 212, 0, 0.6));
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--spacing-sm);
  transition: transform 0.25s ease;
}

.footer-logo:hover {
  transform: translateY(-1px);
}

.footer-logo img {
  height: 38px;
  width: auto;
  max-width: 190px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 212, 0, 0.25));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-1);
}

.nav-play-btn {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 212, 0, 0.3);
}

.nav-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 212, 0, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold-1);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION - GAMING FOCUSED
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: 80px;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  /* filter: blur(2px); */
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

.hero-split {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: var(--spacing-lg);
  text-align: left;
}

.hero-copy-panel {
  max-width: 760px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-1);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.hero-title {
  max-width: 900px;
  margin: 0 0 var(--spacing-md);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 0 0 20px rgba(255, 212, 0, 0.25);
}

.hero-description {
  max-width: 720px;
  margin: 0 0 var(--spacing-lg);
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin-top: var(--spacing-md);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.hero-play-now {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  border: none;
  padding: 16px 48px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 212, 0, 0.4);
}

.hero-play-now:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 212, 0, 0.5);
}

.hero-secondary-link {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 212, 0, 0.45);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-secondary-link:hover {
  color: var(--gold-1);
  border-color: var(--gold-1);
}

.hero-feature-stack {
  display: grid;
  gap: var(--spacing-sm);
}

.hero-stat,
.hero-note {
  border: 1px solid rgba(255, 212, 0, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 20, 0.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-stat {
  padding: var(--spacing-md);
}

.hero-stat strong {
  display: block;
  color: var(--gold-1);
  font-family: var(--font-secondary);
  font-size: 4rem;
  line-height: 1;
}

.hero-stat span,
.hero-note span {
  color: var(--text-secondary);
  font-weight: 700;
}

.hero-note {
  display: grid;
  gap: 10px;
  padding: var(--spacing-md);
}

.hero-note span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-note span::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 14px rgba(255, 212, 0, 0.55);
}

/* ========================================
   ABOUT SECTION - MODERN
   ======================================== */

.about-modern {
  padding: var(--spacing-xl) 0;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.about-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--spacing-lg);
}

.about-image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 212, 0, 0.16);
  box-shadow: var(--shadow-lg);
}

.about-image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy .about-subtitle-modern,
.about-copy .about-desc-text {
  margin-left: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--spacing-md);
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 212, 0, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold-1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  font-weight: 700;
}

.about-header-modern {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.about-title-modern {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-sm);
}

.about-subtitle-modern {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.about-desc-text {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: var(--spacing-md) auto;
}

.about-video-container {
  max-width: 900px;
  margin: var(--spacing-lg) auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 212, 0, 0.3); 
}

.about-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(rgba(15, 15, 26, 0.25), rgba(15, 15, 26, 0.25)), url('/img/about.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.5);
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn::after {
  content: '';
  border-left: 20px solid var(--bg-dark);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
  padding: var(--spacing-xl) 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 26, 0.98), rgba(26, 26, 46, 0.92)),
    var(--bg-dark);
}

.see-more-btn {
  background: transparent;
  border: 2px solid var(--orange-1);
  color: var(--orange-1);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.see-more-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--bg-dark);
}

/* ========================================
   GAME GALLERY SECTION
   ======================================== */

.games {
  padding: var(--spacing-xl) 0;
  background: var(--bg-elevated);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.section-heading-row .gallery-title,
.section-heading-row .about-title-modern {
  text-align: left;
  margin-bottom: 0;
}

.section-heading-row p {
  max-width: 520px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-lg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.gallery-showcase-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.gallery-showcase-header .gallery-title {
  margin-bottom: 0;
  text-align: left;
}

.gallery-showcase-header p {
  max-width: 480px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.game-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: var(--spacing-md);
}

.game-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 212, 0, 0.12);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.game-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 212, 0, 0.35);
  box-shadow: var(--shadow-glow);
}

.game-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-tile:hover img {
  transform: scale(1.05);
}

.game-tile div {
  position: absolute;
  inset: auto 0 0;
  padding: var(--spacing-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.game-tile span {
  color: var(--gold-1);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.game-tile h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-top: 4px;
}

.game-tile.large h3 {
  font-size: 2rem;
}

.game-tile p {
  color: var(--text-secondary);
  margin-top: 8px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  gap: var(--spacing-md);
  align-items: stretch;
}

.gallery-side-stack {
  display: grid;
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 212, 0, 0.16);
  background: rgba(10, 10, 20, 0.7);
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-feature {
  min-height: 560px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.35)),
    linear-gradient(0deg, rgba(15, 15, 26, 0.86), transparent 46%);
  pointer-events: none;
}

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 212, 0, 0.42);
  box-shadow: var(--shadow-glow);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  left: var(--spacing-md);
  right: var(--spacing-md);
  bottom: var(--spacing-md);
  z-index: 2;
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.gallery-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-1);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ========================================
   FUN FACTS SECTION
   ======================================== */

.disclaimer-section {
  padding: var(--spacing-xl) 0;
  background: var(--gradient-dark);
}

.disclaimer-section .about-title-modern {
  text-align: center;
}

.disclaimer-panel {
  max-width: 980px;
  margin: var(--spacing-lg) auto 0;
  padding: var(--spacing-lg);
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 212, 0, 0.16);
  box-shadow: var(--shadow-lg);
}

.disclaimer-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: var(--spacing-lg);
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
}

.disclaimer-item {
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 212, 0, 0.12);
  transition: all 0.3s ease;
}

.disclaimer-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 212, 0, 0.3);
  box-shadow: var(--shadow-glow);
}

.disclaimer-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--gold-1);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg-elevated);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid rgba(255, 212, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  color: #ffffff;
}

.footer-section h3 {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--gold-1);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 212, 0, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-split,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-feature-stack {
    grid-template-columns: 1fr 1fr;
  }

  .game-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-side-stack {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-feature {
    min-height: 440px;
  }
  
  .about-title-modern,
  .gallery-title {
    font-size: 2.2rem;
  }
  
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 212, 0, 0.2);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .hero-split {
    width: min(100% - 24px, 720px);
    text-align: left;
    gap: var(--spacing-md);
  }

  .hero-feature-stack,
  .section-heading-row,
  .gallery-showcase-header,
  .gallery-side-stack,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .gallery-showcase-header {
    display: grid;
    align-items: start;
  }

  .hero-description {
    font-size: 1rem;
  }
  
  .hero-play-now {
    padding: 12px 32px;
    font-size: 1rem;
  }
  
  .about-title-modern,
  .gallery-title {
    font-size: 1.8rem;
  }
  
  .about-subtitle-modern {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-md);
  }

  .game-catalog-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-feature,
  .gallery-item {
    min-height: 300px;
  }

  .game-tile.large {
    grid-column: auto;
    grid-row: auto;
  }
  
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .hero-play-now {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  
  .about-title-modern,
  .gallery-title {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-play-now {
    width: 100%;
  }

  .game-catalog-grid {
    grid-auto-rows: 220px;
  }

  .gallery-feature,
  .gallery-item {
    min-height: 240px;
  }

  .gallery-caption {
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    bottom: var(--spacing-sm);
    font-size: 1rem;
  }

  .disclaimer-panel {
    padding: var(--spacing-md);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 212, 0, 0.6);
  }
}

.game-card, .gallery-item, .disclaimer-panel, .disclaimer-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Simple Terms Page Styles */
.simple-terms {
  padding: 120px 0 80px;
  background: var(--bg-dark);
  min-height: 100vh;
}

.terms-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.terms-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-xs);
}

.terms-subtitle {
  color: var(--text-secondary);
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(255, 212, 0, 0.1);
  transition: all 0.3s ease;
}

.terms-box:hover {
  border-color: rgba(255, 212, 0, 0.3);
  transform: translateY(-3px);
}

.terms-box.important {
  border-left: 4px solid var(--orange-1);
}

.terms-box h2 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-1);
}

.terms-box p, .terms-box li {
  color: var(--text-secondary);
  line-height: 1.6;
}

.terms-box ul {
  padding-left: var(--spacing-md);
  margin: var(--spacing-sm) 0;
}

.contact-info {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  margin-top: var(--spacing-lg);
}

.contact-info h3, .contact-info p {
  color: var(--bg-dark);
}

.contact-link {
  display: inline-block;
  margin-top: var(--spacing-sm);
  color: var(--bg-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--bg-dark);
  color: var(--gold-1);
}

/* Responsive for Terms */
@media (max-width: 768px) {
  .simple-terms {
    padding: 100px 0 60px;
  }
  
  .terms-header h1 {
    font-size: 1.8rem;
  }
  
  .terms-box {
    padding: var(--spacing-sm);
  }
  
  .terms-box h2 {
    font-size: 1.1rem;
  }
}
