/* ============================================
   Skylounge - Main Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Cosmic Theme */
  --color-primary: #1a1f3a;
  --color-secondary: #2d3561;
  --color-accent: #6b46c1;
  --color-accent-light: #8b5cf6;
  --color-gold: #fbbf24;
  --color-gold-dark: #d97706;
  --color-text: #ffffff;
  --color-text-light: #e5e7eb;
  --color-text-muted: #9ca3af;
  --color-bg-dark: #0f172a;
  --color-bg-card: #1e293b;
  --color-border: #334155;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(107, 70, 193, 0.5);
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-dark);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
}

/* Header */
header {
  background: var(--color-primary);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
  flex-wrap: wrap;
}

nav ul li a {
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background: rgba(107, 70, 193, 0.2);
  color: var(--color-gold);
}

nav ul li a svg {
  width: 18px;
  height: 18px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-accent) 100%
  );
  overflow: hidden;
  padding: var(--spacing-2xl) var(--spacing-lg);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-light) 100%
  );
  color: var(--color-text);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  font-size: 1.125rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  color: var(--color-text-light);
}

/* Section Styles */
.section {
  padding: var(--spacing-2xl) var(--spacing-lg);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  color: var(--color-gold);
  position: relative;
  display: inline-block;
  padding-left: var(--spacing-lg);
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60px;
  background: var(--color-gold);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-text);
  font-size: 1.25rem;
  margin-top: var(--spacing-sm);
}

/* Card Styles */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--color-accent);
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-image::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.card-title {
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.card-description {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.card-btn {
  width: 100%;
  text-align: center;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.stat-card {
  background: var(--color-bg-card);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  color: var(--color-text-light);
  font-size: 1rem;
}

/* Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--color-gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--color-primary);
  padding: var(--spacing-2xl) var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.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 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.footer-section a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--color-bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.disclaimer-box {
  background: var(--color-accent);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-xl);
  text-align: center;
}

.disclaimer-box h3 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
}

.disclaimer-box p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: var(--color-primary);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 2px solid var(--color-gold);
}

.popup-content h2 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-md);
}

.popup-content p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.popup-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.popup-buttons .btn {
  min-width: 120px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: var(--spacing-lg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  border-top: 2px solid var(--color-gold);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  color: var(--color-text-light);
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-md);
}

.cookie-buttons .btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1rem;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Large Desktops (1400px and up) */
@media (min-width: 1400px) {
  .header-container,
  .section-container,
  .footer-container {
    max-width: 1400px;
  }
}

/* Desktops (1025px - 1399px) - Default styles apply */

/* Tablets and Small Desktops (769px - 1024px) */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 var(--spacing-md);
  }

  nav ul {
    gap: var(--spacing-md);
  }

  nav ul li a {
    padding: var(--spacing-xs);
    font-size: 0.95rem;
  }

  .section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
  }
}

/* Tablets (481px - 768px) */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  /* Header Mobile */
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-primary);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 70px;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  /* Mobile Menu Overlay */
  nav.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 var(--spacing-md);
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  nav ul li a {
    width: 100%;
    padding: var(--spacing-md);
    justify-content: flex-start;
    border-radius: 0;
  }

  nav ul li a svg {
    width: 20px;
    height: 20px;
  }

  /* Hero Mobile */
  .hero {
    min-height: 450px;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }

  .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
  }

  /* Sections Mobile */
  .section {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .section-header {
    margin-bottom: var(--spacing-lg);
  }

  .section-title {
    font-size: 1.75rem;
    padding-left: var(--spacing-md);
  }

  .section-title::before {
    width: 3px;
    height: 40px;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  /* Cards Mobile */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .card {
    padding: var(--spacing-md);
  }

  .card-image {
    height: 180px;
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.95rem;
  }

  /* Stats Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .stat-card {
    padding: var(--spacing-md);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Forms Mobile */
  .form-container {
    padding: 0;
  }

  .form-group input,
  .form-group textarea {
    padding: var(--spacing-sm);
    font-size: 0.95rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  /* Footer Mobile */
  footer {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .disclaimer-box {
    padding: var(--spacing-md);
  }

  .disclaimer-box h3 {
    font-size: 1.1rem;
  }

  .disclaimer-box p {
    font-size: 0.85rem;
  }

  .copyright {
    font-size: 0.85rem;
  }

  /* Popup Mobile */
  .popup-content {
    padding: var(--spacing-lg);
    margin: var(--spacing-md);
    max-width: calc(100% - 2rem);
  }

  .popup-content h2 {
    font-size: 1.5rem;
  }

  .popup-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .popup-buttons .btn {
    width: 100%;
    min-width: auto;
  }

  /* Cookie Banner Mobile */
  .cookie-banner {
    padding: var(--spacing-md);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }

  .cookie-text {
    min-width: auto;
    font-size: 0.9rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .cookie-buttons .btn {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 14px;
  }

  .header-container {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  nav {
    width: 100%;
  }

  .hero {
    min-height: 400px;
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .section {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .section-title {
    font-size: 1.5rem;
    padding-left: var(--spacing-sm);
  }

  .section-title::before {
    width: 3px;
    height: 30px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .card {
    padding: var(--spacing-sm);
  }

  .card-image {
    height: 150px;
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.95rem;
  }

  footer {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .popup-content {
    padding: var(--spacing-md);
    margin: var(--spacing-sm);
    max-width: calc(100% - 1rem);
  }

  .popup-content h2 {
    font-size: 1.25rem;
  }

  .popup-content p {
    font-size: 0.9rem;
  }

  .cookie-banner {
    padding: var(--spacing-sm);
  }

  .cookie-text {
    font-size: 0.85rem;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 350px;
  }

  nav {
    padding-top: 60px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn,
  nav ul li a,
  .card,
  .social-links a {
    transition: none;
  }

  .card:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.98);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-icon {
    background-size: cover;
  }
}

/* Game Container Styles */
.game-container {
  width: 100%;
  height: calc(100vh - 140px);
  min-height: 600px;
  margin: 0;
  padding: 0;
  background: var(--color-bg-dark);
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .game-container {
    height: calc(100vh - 120px);
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .game-container {
    height: calc(100vh - 100px);
    min-height: 400px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: var(--spacing-sm);
}
.mt-md {
  margin-top: var(--spacing-md);
}
.mt-lg {
  margin-top: var(--spacing-lg);
}
.mt-xl {
  margin-top: var(--spacing-xl);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}
.mb-md {
  margin-bottom: var(--spacing-md);
}
.mb-lg {
  margin-bottom: var(--spacing-lg);
}
.mb-xl {
  margin-bottom: var(--spacing-xl);
}
