/* ==========================================================================
   LUMA PLAY STUDIO — GOLDEN ORANGE (#FFA034) LION-INSPIRED STYLES
   ========================================================================== */

:root {
  /* Golden Orange Brand Colors (#FFA034) */
  --brand-gold: #ffa034;
  --brand-gold-dark: #e0851b;
  --brand-gold-glow: rgba(255, 160, 52, 0.4);
  
  --dark-bg: #0b0d17;
  --dark-card: #131726;
  --dark-diamond-bg: #101320;
  
  --cyan: #00f0ff;
  --cyan-dark: #00c4d4;
  --cyan-glow: rgba(0, 240, 255, 0.4);
  
  --text-white: #ffffff;
  --text-dark: #0b0d17;
  --text-muted: #a0a7c4;
  --text-dim: #6c7499;
  
  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(255, 160, 52, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --font-heading: 'Outfit', 'Space Grotesk', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand-gold);
  color: #0b0d17;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  color: var(--text-muted);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ==================== PRIVACY POLICY & TERMS LANGUAGE TAB SWITCHER ==================== */
.privacy-lang-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.privacy-lang-btn, .terms-lang-btn {
  background: var(--dark-card);
  border: 1.5px solid var(--border-light);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 1.1rem 0.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.privacy-lang-btn:hover, .terms-lang-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--brand-gold-glow);
}

.privacy-lang-btn.active, .terms-lang-btn.active {
  background: #0b0d17;
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  box-shadow: 0 15px 35px var(--brand-gold-glow);
  transform: translateY(-2px);
}

.privacy-content, .terms-content {
  display: none;
  animation: fadeIn 0.35s ease;
}

.privacy-content.active, .terms-content.active {
  display: block;
}

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

@media (max-width: 920px) {
  .privacy-lang-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .privacy-lang-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== HEADER (Dead-Centered Nav Links) ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--brand-gold);
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background-color 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
}

.brand-logo-box {
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.brand-logo-box:hover {
  transform: scale(1.06);
}

.brand-logo-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff !important;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  z-index: 2;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92) !important;
  position: relative;
  padding: 0.5rem 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.nav__link:hover,
.nav__link.active {
  color: #ffffff !important;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.btn-header-submit {
  border: 2.5px solid #ffffff !important;
  color: #ffffff !important;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-lg);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-header-submit:hover {
  background: #ffffff !important;
  color: #0b0d17 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 2px solid #fff;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: #fff;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--brand-gold);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

/* ==================== HERO BANNER (Dynamic Color Interpolation 1s) ==================== */
.hero-lion {
  background-color: var(--brand-gold);
  position: relative;
  padding: 4rem 2rem 7rem;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  overflow: hidden;
  transition: background-color 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-lion__watermark-logo {
  position: absolute;
  top: -40px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: url('../assets/images/Logo.png') no-repeat center / contain;
  filter: brightness(0);
  opacity: 0.08;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: 1;
}

.hero-lion__watermark-beach {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: url('../assets/images/Beach.png') no-repeat right center / cover;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.hero-lion__container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-lion__left h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #0b0d17;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: none;
  transition: color 1s ease;
}

.hero-lion__left p {
  font-size: 1.2rem;
  color: rgba(11, 13, 23, 0.88);
  font-weight: 500;
  max-width: 500px;
  margin-bottom: 2.2rem;
  line-height: 1.55;
  text-shadow: none;
  transition: color 1s ease;
}

.hero-lion__left p strong {
  color: #000000;
  transition: color 1s ease;
}

/* White Text Contrast for Pixel Bomb (#0793E6) & Clay Gallery (#52B70D) Slides */
.hero-lion.hero-white-text .hero-lion__left h1 {
  color: #ffffff;
}

.hero-lion.hero-white-text .hero-lion__left p {
  color: rgba(255, 255, 255, 0.92);
}

.hero-lion.hero-white-text .hero-lion__left p strong {
  color: #ffffff;
}

.hero-lion__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-hero-white {
  background: #0b0d17;
  color: #ffffff;
  padding: 0.95rem 2.4rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.btn-hero-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
  background: #181d30;
  color: #ffffff;
}

.btn-hero-cyan {
  background: #ffffff;
  color: #0b0d17;
  padding: 0.95rem 2.4rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.btn-hero-cyan:hover {
  transform: translateY(-3px);
  background: #f4f5fa;
  color: #000000;
}

/* ==================== HERO GAMES CAROUSEL ==================== */
.hero-games-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.5);
  border: 4px solid #0b0d17;
  background: #0f121d;
  aspect-ratio: 16 / 9;
  user-select: none;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  pointer-events: none;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 13, 23, 0.9) 0%, rgba(11, 13, 23, 0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 2rem;
}

.carousel-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  background: rgba(11, 13, 23, 0.85);
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand-gold);
}

.carousel-game-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.carousel-game-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 13, 23, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-nav-btn:hover {
  background: var(--brand-gold);
  color: #0b0d17;
  border-color: var(--brand-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--brand-gold);
  width: 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px var(--brand-gold-glow);
}

/* ==================== COMMON SECTION LAYOUTS ==================== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  text-transform: uppercase;
}

.section-desc {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

/* ==================== GAME CARDS & IMPRESSUM CARDS ==================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.game-card, .impressum-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.game-card:hover, .impressum-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--brand-gold-glow);
}

.impressum-card {
  padding: 2.5rem;
}

.impressum-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.impressum-email-box {
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.impressum-email-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-gold);
  word-break: break-all;
}

.game-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #090c17;
}

.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card__img {
  transform: scale(1.06);
}

.game-card__badge {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  background: rgba(11, 13, 23, 0.92);
  border: 1.5px solid var(--brand-gold);
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  z-index: 5;
}

.game-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.game-card__text {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.6;
}

/* App Store Buttons Block */
.store-buttons-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.store-buttons-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-align: center;
}

.store-buttons-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  gap: 1rem;
}

.btn-store-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-store-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.btn-store-icon:hover {
  background: #0b0d17;
  border-color: var(--brand-gold);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px var(--brand-gold-glow);
}

.btn-store-icon:hover img {
  filter: invert(71%) sepia(85%) saturate(1632%) hue-rotate(345deg) brightness(102%) contrast(102%);
}

/* ==================== PRE-FOOTER CALLOUT (45-Degree Striped Pattern) ==================== */
.pre-footer-callout {
  background-color: var(--dark-diamond-bg);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 15px,
    transparent 15px,
    transparent 30px
  );
  padding: 5.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pre-footer-callout h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.btn-submit-cyan {
  background: var(--brand-gold);
  color: #0b0d17;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.1rem 2.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--brand-gold-glow);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background-color 1s ease;
  display: inline-block;
}

.btn-submit-cyan:hover {
  background: #ffffff !important;
  color: var(--brand-gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--brand-gold-glow) !important;
}

/* ==================== FOOTER (#FFA034) ==================== */
.site-footer-coral {
  background-color: var(--brand-gold);
  color: #ffffff;
  padding: 2.25rem 2rem 2.25rem;
  position: relative;
  transition: background-color 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-coral-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-coral-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1.5rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-coral-middle {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.footer-nav-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-social-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.95);
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: #ffffff;
  color: var(--brand-gold-dark);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-coral-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-legal-links {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==================== PAGE HERO (SUBPAGES) ==================== */
.page-hero {
  background-color: var(--brand-gold);
  padding: 4rem 2rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: 3rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #0b0d17;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(11, 13, 23, 0.88);
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto;
}

/* About Page Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--dark-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.team-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px var(--brand-gold-glow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--brand-gold);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: var(--dark-diamond-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.team-role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.team-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* MODALS SYSTEM */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 5, 11, 0.85);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 580px;
  background: #0d101d;
  border: 2px solid var(--brand-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 30px var(--brand-gold-glow);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--brand-gold);
  color: #0b0d17;
  transform: rotate(90deg);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .hero-lion__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lion__left p {
    margin: 0 auto 2rem;
  }

  .hero-lion__actions {
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-coral-middle {
    grid-template-columns: 1fr;
  }

  .hero-lion__watermark-beach {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .btn-header-submit {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .games-grid, .team-grid {
    grid-template-columns: 1fr;
  }

  .impressum-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .impressum-email-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

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

  .footer-coral-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-lion__watermark-beach {
    display: none;
  }
}
