/* ==========================================
           1. DESIGN TOKENS & RESET
           ========================================== */
:root {
  --primary-red: #e50914;
  --dark-red: #b30000;
  --bg-black: #050505;
  --bg-secondary: #101010;
  --bg-card: #161616;
  --text-white: #ffffff;
  --text-gray: #b8b8b8;
  --text-dark: #666666;
  --border-glow: rgba(229, 9, 20, 0.4);
  --glow-heavy: rgba(229, 9, 20, 0.7);
  --font-display: "Cinzel", serif;
  --font-body: "Montserrat", sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(22, 22, 22, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --gold-accent: #d4af37;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 4px;
  box-shadow: 0 0 10px var(--primary-red);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-red);
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-red), var(--primary-red));
  width: 0%;
  z-index: 9999;
  box-shadow: 0 0 12px var(--primary-red);
  transition: width 0.1s ease-out;
}

/* Container Limiters */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Global Structural Utilities */
.section-padding {
  padding: 120px 0;
  position: relative;
}

.text-glow {
  text-shadow: 0 0 15px var(--glow-heavy);
}

.gold-text-glow {
  color: var(--gold-accent);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.glow-button {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--text-white);
  border: none;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 10px;
}

.glow-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.glow-button:hover::before {
  left: 100%;
}

.glow-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--glow-heavy);
}

.secondary-button {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--primary-red);
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-button:hover {
  background: rgba(229, 9, 20, 0.1);
  box-shadow: 0 0 15px var(--border-glow);
  transform: translateY(-3px);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-red);
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-desc {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Grid Frameworks */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 40px;
}

/* ==========================================
           2. NAVIGATION BAR
           ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 9, 20, 0.15);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 5px 0;
  background: rgba(5, 5, 5, 0.98);
  border-bottom: 1px solid var(--primary-red);
  box-shadow: 0 4px 20px rgba(5, 5, 5, 0.8);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

header.scrolled nav {
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-symbol {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-white);
  font-size: 1.5rem;
  box-shadow: 0 0 15px var(--primary-red);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--text-white);
}

.logo-text span {
  color: var(--primary-red);
  text-shadow: 0 0 10px var(--border-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px var(--primary-red);
}

.nav-links a.active {
  color: var(--text-white);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 10px 18px;
  transition: var(--transition-smooth);
}

.login-btn:hover {
  color: var(--primary-red);
  text-shadow: 0 0 8px var(--border-glow);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-white);
  border-radius: 2px;
}

/* ==========================================
           3. APP MULTI-VIEW MODULES
           ========================================== */
.app-view {
  display: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-view.active-view {
  display: block;
  opacity: 1;
}

/* ==========================================
           4. VIEW-SPECIFIC STYLING
           ========================================== */

/* --- HOME VIEW --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-black);
  overflow: hidden;
  padding-top: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(229, 9, 20, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-tag {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-red);
  margin-bottom: 20px;
  display: inline-block;
  border-left: 3px solid var(--primary-red);
  padding-left: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--text-white) 30%, #ffdada 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--primary-red), #ff4d5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-circle {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 40%,
    rgba(229, 9, 20, 0.15) 100%
  );
  border: 2px dashed rgba(229, 9, 20, 0.3);
  animation: rotateGlow 24s linear infinite;
}

.glow-circle-inner {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(229, 9, 20, 0.6);
  animation: rotateGlowReverse 14s linear infinite;
}

.floating-element {
  position: absolute;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8));
  animation: float 6s ease-in-out infinite;
}

.chip-red {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}
.chip-black {
  bottom: 15%;
  left: 8%;
  animation-delay: 2s;
}
.card-poker {
  top: 28%;
  left: 16%;
  transform: rotate(-15deg);
  animation: floatCard 8s ease-in-out infinite;
}
.card-spade {
  bottom: 22%;
  right: 12%;
  transform: rotate(15deg);
  animation: floatCard 7s ease-in-out infinite;
  animation-delay: 1.5s;
}

.svg-card {
  width: 110px;
  height: 160px;
  background: linear-gradient(135deg, #1d1d1d, #0f0f0f);
  border: 2px solid var(--primary-red);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.25);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-suit {
  font-size: 2rem;
  color: var(--primary-red);
  text-shadow: 0 0 10px var(--primary-red);
  font-weight: bold;
  text-align: center;
}

.card-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-white);
}

.svg-chip {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #1a1a1a 40%,
    var(--primary-red) 85%,
    #0d0d0d 100%
  );
  border: 4px dashed var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px var(--border-glow);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-white);
  text-shadow: 0 1px 2px black;
}

.chip-black-style {
  background: radial-gradient(circle, #1a1a1a 40%, #333333 85%, #000000 100%);
  border: 4px dashed var(--primary-red);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0px) rotate(-15deg);
  }
  50% {
    transform: translateY(-15px) rotate(-5deg);
  }
  100% {
    transform: translateY(0px) rotate(-15deg);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateGlowReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* --- PREMIUM CARD DESIGN (GAMES / WHY CHOOSE) --- */
.premium-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.25);
}

.premium-card-banner {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}

.banner-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  transition: var(--transition-smooth);
}

.premium-card:hover .banner-art {
  transform: scale(1.12) rotate(4deg);
  filter: drop-shadow(0 0 15px var(--primary-red));
}

.premium-card-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-white);
  text-transform: uppercase;
}

.card-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-feature-list {
  list-style: none;
  margin-bottom: 25px;
}

.card-feature-list li {
  font-size: 0.85rem;
  color: var(--text-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-feature-list li::before {
  content: "✦";
  color: var(--primary-red);
  font-weight: bold;
}

/* --- STATS GRID --- */
.live-stats {
  background: linear-gradient(135deg, #0d0d0d 0%, #030303 100%);
  border-top: 1px solid rgba(229, 9, 20, 0.15);
  border-bottom: 1px solid rgba(229, 9, 20, 0.15);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--text-white) 40%, #8c8c8c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* --- TESTIMONIAL SLIDER --- */
.testimonials {
  background-color: var(--bg-secondary);
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-wrapper {
  position: relative;
  height: 320px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 45px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96) translateY(15px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.user-rating {
  color: #ffb800;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-white);
  margin-bottom: 25px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-white);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.4);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.control-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  box-shadow: 0 0 15px var(--primary-red);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--primary-red);
  width: 18px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--primary-red);
}

/* --- ACCORDION FAQ --- */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.faq-toggle {
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 30px;
}

.faq-answer {
  padding-bottom: 22px;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open {
  border-color: rgba(229, 9, 20, 0.3);
}

.faq-item.open .faq-question {
  color: var(--primary-red);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-red);
}

.faq-item.open .faq-content {
  max-height: 300px;
  transition: max-height 0.4s cubic-bezier(0.99, 0.01, 0.45, 1);
}

/* --- DOWNLOAD APP VIEW & DEVICE SCREENS --- */
.showcase-grid-8 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .showcase-grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .showcase-grid-8 {
    grid-template-columns: 1fr;
  }
}

/* New Horizontal Landscape Phone Mockup Frame */
.phone-mockup-horizontal {
  width: 100%;
  max-width: 100%;
  height: 260px;
  background: #090909;
  border: 8px solid #222222;
  border-radius: 24px;
  margin: 0 auto;
  position: relative;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(229, 9, 20, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: var(--transition-smooth);
}

.phone-mockup-horizontal:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-red);
  box-shadow: 0 20px 40px rgba(229, 9, 20, 0.25);
}

/* Horizontal left-side camera notch */
.phone-notch-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 90px;
  background: #222222;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
}

.phone-screen-content-horizontal {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1a0203 0%, #030101 100%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-screen-content-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Phone Screen Frame Placeholder */
.phone-mockup {
  width: 100%;
  max-width: 240px;
  height: 440px;
  background: #090909;
  border: 8px solid #222222;
  border-radius: 32px;
  margin: 0 auto;
  position: relative;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(229, 9, 20, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 14px;
  background: #222222;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-screen-content {
  height: 100%;
  background: radial-gradient(circle at center, #1a0203 0%, #030101 100%);
  border-radius: 20px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.phone-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 15px;
  color: var(--text-white);
  text-transform: uppercase;
}

.phone-art-graphic {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 12px var(--primary-red));
  animation: bounceArt 3s ease-in-out infinite alternate;
}

.phone-desc {
  font-size: 0.72rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.phone-action-bar {
  width: 100%;
  height: 10px;
  background: var(--primary-red);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--primary-red);
}

@keyframes bounceArt {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

/* --- GAME DETAILS VIEW COMPONENT (E.G. ROULETTE STAGE) --- */
.roulette-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.roulette-wheel-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #2d2d2d 30%, #151515 70%, #000000 100%);
  border: 12px solid #d4af37;
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 4s cubic-bezier(0.1, 0.8, 0.1, 1);
}

.wheel-marker {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--primary-red);
  z-index: 10;
}

.wheel-numbers {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    #111 0deg 9.7deg,
    var(--primary-red) 9.7deg 19.4deg,
    #008000 19.4deg 20.4deg,
    #111 20.4deg 30.1deg
  );
  opacity: 0.85;
}

.wheel-center-glass {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #1a1a1a 40%, #0d0d0d 100%);
  border-radius: 50%;
  border: 4px solid #d4af37;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: 1.4rem;
}

/* --- PLATFORM SCREENSHOT PLACEHOLDER COMPONENT --- */
.screenshot-placeholder-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.screen-placeholder {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  height: 380px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.screen-placeholder:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
  transform: translateY(-5px);
}

.screen-placeholder-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.4) 0%, #101010 100%);
  z-index: 1;
}

.screen-icon {
  font-size: 5rem;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.15;
  transition: var(--transition-smooth);
}

.screen-placeholder:hover .screen-icon {
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(1.1);
}

.screen-placeholder-text {
  position: relative;
  z-index: 2;
}

.screen-tag {
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.screen-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-white);
}

/* --- CONTACT US VIEW --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.contact-info-list {
  list-style: none;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.2);
  color: var(--primary-red);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-text p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- LEGAL PAGES LAYOUT --- */
.legal-layout {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.legal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  color: var(--text-gray);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* --- VIP PLANS CARDS --- */
.vip-plan-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.vip-plan-card.premium-glow {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.25);
}

.vip-plan-card::after {
  content: "ROYALE";
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 30px;
  transform: rotate(45deg);
  letter-spacing: 1.5px;
}

.plan-header {
  margin-bottom: 30px;
}

.plan-level {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.plan-stakes {
  font-size: 0.85rem;
  color: var(--primary-red);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}

.plan-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
}

.plan-features li {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
}

/* ==========================================
           5. CALL TO ACTION SECTION
           ========================================== */
.cta {
  position: relative;
  background-color: var(--bg-black);
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.15);
}

.cta-box {
  background: radial-gradient(
    circle at center,
    rgba(229, 9, 20, 0.15) 0%,
    rgba(22, 22, 22, 0.8) 100%
  );
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(229, 9, 20, 0.1);
}

.cta-glow-effect {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(229, 9, 20, 0.25) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.cta-desc {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================
           6. FOOTER
           ========================================== */
footer {
  background-color: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-red);
  color: var(--text-white);
  box-shadow: 0 0 12px var(--primary-red);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-red);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-dark);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--primary-red);
}

/* ==========================================
           7. MODAL POPUP (AUTHENTICATION)
           ========================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-card);
  border: 1px solid var(--primary-red);
  box-shadow: 0 0 40px rgba(229, 9, 20, 0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--primary-red);
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.modal-tab {
  flex: 1;
  padding: 15px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
}

.modal-tab.active {
  color: var(--primary-red);
}

.modal-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
  box-shadow: 0 0 8px var(--primary-red);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  color: var(--text-gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.2);
}

.form-remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.modal-btn {
  width: 100%;
  margin-top: 10px;
}

.modal-form-view {
  display: none;
}

.modal-form-view.active {
  display: block;
}

/* --- TOAST SYSTEM --- */
.toast {
  position: fixed;
  bottom: 30px;
  right: -400px;
  background-color: var(--bg-card);
  border-left: 4px solid var(--primary-red);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(229, 9, 20, 0.15);
  border-radius: 0 8px 8px 0;
  padding: 20px 25px;
  z-index: 1200;
  transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 350px;
}

.toast.active {
  right: 30px;
}

.toast-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.toast-body {
  color: var(--text-gray);
  font-size: 0.85rem;
}

/* ==========================================
           9. ADVANCED GAME INTERACTIVE COMPONENTS
           ========================================== */
/* Hold'em visualizer card table layout */
.poker-table-mockup {
  width: 100%;
  height: 420px;
  background: radial-gradient(ellipse at center, #1b0a33 0%, #030005 100%);
  border: 15px solid #281204;
  border-radius: 200px;
  box-shadow:
    inset 0 0 50px rgba(0, 0, 0, 0.9),
    0 15px 40px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.poker-table-felt {
  position: absolute;
  width: 90%;
  height: 80%;
  border: 2px dashed rgba(229, 9, 20, 0.2);
  border-radius: 180px;
  pointer-events: none;
}

.community-cards {
  display: flex;
  gap: 12px;
  z-index: 2;
}

.community-cards .svg-card {
  width: 60px;
  height: 90px;
  font-size: 0.8rem;
  padding: 6px;
  border-radius: 6px;
}

.community-cards .svg-card .card-suit {
  font-size: 1.25rem;
}

.poker-player-seats {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.poker-seat {
  position: absolute;
  background-color: var(--bg-card);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.25);
}

.seat-dealer {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}
.seat-opponent-1 {
  top: 40%;
  left: 8%;
}
.seat-opponent-2 {
  top: 40%;
  right: 8%;
}
.seat-hero {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-color: #fff;
  box-shadow: 0 0 15px #fff;
}

.seat-name {
  font-weight: 800;
  margin-bottom: 2px;
}

.seat-chips {
  color: var(--gold-accent);
  font-weight: 600;
}

/* VIP Point Simulator Slider block */
.vip-calculator-box {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.calc-slider-container {
  margin: 30px 0;
}

.calc-slider {
  width: 100%;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-red);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-red);
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
}

.calc-result-title {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-red);
  font-weight: 800;
}

/* --- ROADMAP TIMELINE GRID (ABOUT) --- */
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: rgba(229, 9, 20, 0.2);
  transform: translateX(-50%);
}

.roadmap-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  padding: 0 40px;
}

.roadmap-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.roadmap-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.roadmap-dot {
  position: absolute;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red);
  z-index: 5;
}

.roadmap-item:nth-child(even) .roadmap-dot {
  left: -8px;
}

.roadmap-item:nth-child(odd) .roadmap-dot {
  right: -8px;
}

.roadmap-box {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
}

.roadmap-quarter {
  font-family: var(--font-display);
  color: var(--primary-red);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.roadmap-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .roadmap-timeline::before {
    left: 10px;
  }
  .roadmap-item {
    width: 100%;
    left: 0 !important;
    padding-left: 40px;
    padding-right: 0;
    text-align: left !important;
  }
  .roadmap-item:nth-child(even) .roadmap-dot,
  .roadmap-item:nth-child(odd) .roadmap-dot {
    left: 2px;
  }
}

/* --- TEAM CARD ROW (ABOUT) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.team-member-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-member-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-5px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-secondary), #333);
  border: 2px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--text-white);
}

.team-name {
  font-weight: 800;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
           10. RESPONSIVE DESIGN BREAKPOINTS
           ========================================== */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  .nav-auth {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-black);
    border-left: 1px solid rgba(229, 9, 20, 0.2);
    padding: 100px 40px;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideIn 0.4s ease forwards;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .mobile-open .mobile-only-auth {
    display: block !important;
    margin-top: 20px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-red);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary-red);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .legal-layout {
    padding: 30px 20px;
  }
}


@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}