/* ==========================================================================
   YULA STUDIOS — Core Stylesheet
   ========================================================================== */

/* --- Custom Variables & Theme Tokens --- */
:root {
  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  /* Harmonious Dark Palette */
  --bg-color: hsl(220, 20%, 6%);
  --bg-card: hsla(220, 15%, 10%, 0.6);
  --bg-card-hover: hsla(220, 15%, 14%, 0.8);
  
  --text-primary: hsl(210, 20%, 98%);
  --text-secondary: hsl(210, 12%, 75%);
  --text-dim: hsl(210, 8%, 55%);

  /* Ambient & Glowing Accents */
  --accent-amber: hsl(38, 55%, 55%);
  --accent-amber-glow: hsla(38, 55%, 55%, 0.15);
  --accent-teal: hsl(175, 75%, 45%);
  --accent-teal-glow: hsla(175, 75%, 45%, 0.15);

  --border-color: hsla(210, 10%, 25%, 0.4);
  --border-glow: hsla(0, 0%, 100%, 0.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Reset & Defaults --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: hsl(220, 10%, 15%);
  border: 2px solid var(--bg-color);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-amber);
}

/* --- Background Ambient Glows --- */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
  mix-blend-mode: screen;
}

.bg-glow-1 {
  background: radial-gradient(circle, var(--accent-amber) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.bg-glow-2 {
  background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
  top: 50%;
  left: -200px;
}

/* --- Reusable Utility Components (Buttons, Container) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-amber);
  color: hsl(220, 30%, 5%);
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--text-primary);
  box-shadow: 0 8px 20px rgba(197, 160, 85, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

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

.btn-glow {
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-teal) 100%);
  color: hsl(220, 30%, 5%);
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
}

.btn-glow:hover {
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.45);
  transform: translateY(-2px) scale(1.02);
}

/* --- Header & Navigation --- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  background: rgba(10, 11, 13, 0.7);
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}

.logo-text {
  font-family: 'Noto Sans Old Turkic', var(--font-mono);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 2px;
  color: #ff6c00;
}

.logo-sub {
  color: #ffffff;
  font-weight: 400;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

#main-nav a:not(.btn) {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

#main-nav a:not(.btn):hover {
  color: var(--accent-amber);
}

/* Mobile Menu Toggle Button */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

#menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
#hero {
  padding: 160px 24px 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tagline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-teal);
  text-shadow: 0 0 10px rgba(42, 157, 143, 0.3);
}

#hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* Hero Visual card (floating with logo) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-logo {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(197, 160, 85, 0.25));
  animation: logoPulse 4s ease-in-out infinite;
}

.card-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--accent-amber);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.15;
  z-index: -1;
}

/* Animations */
@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1.0); filter: drop-shadow(0 0 15px rgba(197, 160, 85, 0.25)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 25px rgba(197, 160, 85, 0.45)); }
}

/* --- Common Section Styles --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Games Section & Premium Cards --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.game-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.game-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.game-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.game-status {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

.game-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-teal);
  font-weight: 500;
}

.game-link:hover {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Glow Border Effect */
.card-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition-smooth);
}

.game-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: hsla(210, 10%, 40%, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.game-card:hover .card-border-glow {
  border-color: rgba(197, 160, 85, 0.25);
  box-shadow: inset 0 0 12px rgba(197, 160, 85, 0.05);
}

/* --- Yula Engine Section --- */
.engine-box {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: radial-gradient(100% 100% at 0% 0%, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  align-items: center;
}

.engine-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.engine-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent-teal);
}

.engine-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.engine-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.engine-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1.2;
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* Retro Technical Console */
.engine-visual {
  padding: 32px;
  display: flex;
  justify-content: center;
}

.console-box {
  width: 100%;
  max-width: 420px;
  background: #060709;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  font-family: monospace;
}

.console-header {
  background: #0f1115;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.console-dot.red { background: #ff5f56; }
.console-dot.yellow { background: #ffbd2e; }
.console-dot.green { background: #27c93f; }

.console-title {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.console-code {
  padding: 20px;
  font-size: 0.8rem;
  color: #a9b1d6;
  white-space: pre-wrap;
  line-height: 1.5;
  overflow-x: auto;
}

/* --- About Section & Stats --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.about-info p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: right;
}

/* --- Footer --- */
#contact {
  background: #07080a;
  border-top: 1px solid var(--border-color);
  padding: 80px 24px 40px 24px;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
}

.footer-logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.footer-brand h3.logo-text {
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--accent-amber);
  margin-bottom: 8px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.cloudflare-badge {
  color: var(--accent-teal);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-container {
    gap: 48px;
  }
  .engine-box {
    grid-template-columns: 1fr;
  }
  .engine-visual {
    padding-bottom: 64px;
  }
}

@media (max-width: 900px) {
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  #hero-desc {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  #menu-toggle {
    display: flex;
  }
  
  #main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a0b0d;
    border-bottom: 1px solid var(--border-color);
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
  }

  #main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- Scroll Reveal Animations --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Game Card Details & Action Row --- */
.game-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.game-info-row {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.info-item span {
  color: var(--text-dim);
  margin-right: 4px;
}

.game-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

/* --- Modal Layouts --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 6, 0.85);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  background: hsla(220, 15%, 10%, 0.95);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-container {
  transform: scale(1);
  border-color: var(--accent-amber);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-amber);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

/* --- Screenshot Gallery inside Modal --- */
.ss-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ss-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000;
}

.ss-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.ss-item:hover img {
  transform: scale(1.03);
}

.ss-caption {
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-color);
  font-family: var(--font-mono);
}

/* --- Roadmap Timeline inside Modal --- */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 24px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 7px;
  width: 2px;
  height: calc(100% - 16px);
  background: var(--border-color);
}

.roadmap-step {
  position: relative;
}

.roadmap-step::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--text-dim);
}

.roadmap-step.complete::before {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  box-shadow: 0 0 8px var(--accent-teal);
}

.roadmap-step.active::before {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  box-shadow: 0 0 8px var(--accent-amber);
}

.roadmap-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.roadmap-step-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.roadmap-step-status {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 2px 8px;
  border-radius: 20px;
}

.roadmap-step-status.complete {
  background: rgba(42, 157, 143, 0.15);
  color: var(--accent-teal);
}

.roadmap-step-status.active {
  background: rgba(197, 160, 85, 0.15);
  color: var(--accent-amber);
}

.roadmap-step-status.planned {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
}

.roadmap-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.btn-lang {
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-family: var(--font-mono);
  font-weight: 600;
  transition: var(--transition-fast);
  margin-left: 8px;
}

.btn-lang:hover {
  background: var(--accent-teal-glow);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .btn-lang {
    margin-left: 0;
    margin-top: 12px;
    width: 60px;
    text-align: center;
  }
}

/* --- Support Section --- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.support-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(197, 160, 85, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.support-icon {
  font-size: 2.2rem;
}

.support-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
}

.support-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.support-cta {
  background: radial-gradient(100% 100% at 0% 0%, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.support-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.support-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 48px auto;
  }
}

.btn-orange {
  background: #ff6c00;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-orange:hover {
  background: #e05f00;
  box-shadow: 0 4px 15px rgba(255, 108, 0, 0.35);
  transform: translateY(-1px);
}

.game-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap; /* allow wrapping on narrow screens */
}





