@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* SquidStudios Brand Palette - Vibrant & Simple */
  --primary: #03a7bd;      /* Vibrant Lighter Teal */
  --primary-rgb: 3, 167, 189;
  --primary-hover: #03c1db;
  --secondary: #ff4757;    /* Logo Contrast Coral */
  --accent: #ffa502;       /* Logo Gold Accent */
  --background: #060912;
  --background-alt: #0d121f;
  --surface: rgba(13, 18, 31, 0.7);
  --text: #f8fafc;
  --text-muted: #cbd5e1;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.05);
  --glass: rgba(6, 9, 18, 0.9);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  /* Layout & Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 32px;
  --radius-md: 20px;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--background-alt);
  border-radius: 10px;
  border: 2px solid var(--background);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'League Spartan', 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'League Spartan', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2); }
  50% { box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.4); }
}

@keyframes gradientShift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(1.05); }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 70px;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.5px;
}

.logo img {
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--primary);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-background-effects {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(2, 104, 124, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 71, 87, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 165, 2, 0.08) 0%, transparent 50%);
  animation: gradientShift 12s ease-in-out infinite;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.trust-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(90deg, #ff4757, #2ed1b9, #ffa502, #ff4757);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s linear infinite;
}

.hero p {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.hero-stats i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-mockup {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.tilt-3d {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 40px;
}

.video-overlay:hover .play-button-large {
  transform: scale(1.1);
  background: var(--primary-hover);
}

.play-button-large {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.5);
  transition: var(--transition);
  animation: glow 2s ease-in-out infinite;
}

.play-button-large i {
  margin-left: 4px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
  box-shadow: 0 15px 30px -5px rgba(var(--primary-rgb), 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.magnetic {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Games Section --- */
.games-section {
  padding: 150px 0 100px;
  position: relative;
  z-index: 10;
}

.section-title {
  text-align: center;
  margin-bottom: 6rem;
  padding-top: 2rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-top: 0.5rem;
}

.badge {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.game-showcases {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.game-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-showcase.active {
  opacity: 1;
  transform: translateY(0);
}

.game-showcase[data-layout="image-right"] {
  grid-template-columns: 1fr 1fr;
}

.game-showcase[data-layout="image-right"] .game-visual {
  order: 2;
}

.game-showcase[data-layout="image-left"] {
  grid-template-columns: 1fr 1fr;
}

.game-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-frame {
  position: relative;
  z-index: 2;
  width: 100%;
}

.game-mockup {
  width: 100%;
  max-width: 400px; /* Reduced size for clean look */
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s ease;
}

.game-showcase.active .game-mockup {
  clip-path: inset(0 0 0 0);
}

.game-showcase:hover .game-mockup {
  transform: scale(1.03);
}

.gradient-bg {
  display: none; /* Removed for simplicity as requested */
}

.game-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.game-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-content h3 {
  font-size: 2.5rem;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text);
}

.feature-list i {
  width: 24px;
  color: var(--primary);
  font-size: 1.2rem;
}

.game-social-proof {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.game-social-proof span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.rating {
  color: var(--accent) !important;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.store-btn-large {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.store-btn-large i {
  font-size: 1.4rem;
}

.store-btn-large:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.4);
}

.parallax-layer {
  transform: translateZ(0);
  will-change: transform;
}

/* --- Footer --- */
footer {
  padding: 100px 0 40px;
  margin-top: 100px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--white);
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Video Modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
}

.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-modal:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.modal-content video {
  width: 100%;
  max-height: 80vh;
  border-radius: 20px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.modal-content video::-webkit-media-controls {
  display: flex !important;
}

.modal-content video::-webkit-media-controls-panel {
  display: flex !important;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 100;
}

.back-to-top.active {
  display: flex;
  animation: fadeInUp 0.4s ease forwards;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .game-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .game-showcase[data-layout="image-right"] {
    grid-template-columns: 1fr;
  }

  .game-showcase[data-layout="image-right"] .game-visual {
    order: 0;
  }

  .game-showcases {
    gap: 80px;
  }
}

@media (max-width: 968px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

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

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

  .hero h1 {
    font-size: 3.5rem;
  }

  .mockup-container {
    max-width: 400px;
  }

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

  .game-showcases {
    gap: 60px;
    padding: 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand p {
    margin: 1.5rem auto;
  }

  .nav-links {
    display: none;
  }

  /* Disable parallax on mobile for performance */
  .parallax-layer {
    transform: none !important;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .mockup-container {
    max-width: 320px;
  }

  .game-icon-large {
    width: 100px;
    height: 100px;
  }

  .game-content h3 {
    font-size: 1.75rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .feature-list {
    gap: 0.75rem;
  }

  .feature-list li {
    font-size: 0.95rem;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-btn-large {
    width: 100%;
    justify-content: center;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .parallax-layer {
    transform: none !important;
  }

  .tilt-3d:hover {
    transform: none !important;
  }
}

/* --- Coming Soon Styles --- */
.coming-soon-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.coming-soon-badge-inner {
  position: absolute;
  top: 20px;
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  z-index: 10;
  letter-spacing: 1px;
}

.coming-soon-card {
  position: relative;
  width: 280px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.coming-soon-card:hover::before {
  transform: translateX(100%);
}

.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

.card-inner i {
  font-size: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.loading-bar {
  width: 150px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background: var(--primary);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--primary);
  animation: progress 2s ease-in-out infinite alternate;
}

.status-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--primary);
  text-transform: uppercase;
}

.glow-effect {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.floating-icons-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.4;
}

.icon-heart { top: 10%; left: 10%; animation: floatingIcon 3s ease-in-out infinite; }
.icon-diamond { top: 20%; right: 15%; animation: floatingIcon 4s ease-in-out infinite 1s; }
.icon-club { bottom: 15%; left: 20%; animation: floatingIcon 3.5s ease-in-out infinite 0.5s; }
.icon-spade { bottom: 25%; right: 10%; animation: floatingIcon 4.5s ease-in-out infinite 1.5s; }

@keyframes progress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes floatingIcon {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  50% { transform: translate(20px, -30px) rotate(20deg); opacity: 0.6; }
}

@media (max-width: 768px) {
  .coming-soon-container {
    height: 400px;
  }
  .coming-soon-card {
    width: 240px;
    height: 320px;
  }
}
/* --- Legal Pages Styling --- */
.legal-content {
  padding-top: 140px; /* Clear fixed nav */
  padding-bottom: 80px;
  min-height: 80vh;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--background-alt);
  padding: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.legal-card h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-card h2 {
  font-size: 1.75rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.legal-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-card ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.legal-card li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
  position: relative;
}

.legal-card strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 768px) {
  .legal-content {
    padding-top: 100px;
  }
  
  .legal-card {
    padding: 2rem;
    border-radius: var(--radius-md);
  }
  
  .legal-card h1 {
    font-size: 2.5rem;
  }
}
