/**
 * Star Invasion Landing Page - Responsive Styles
 * Mobile-first responsive design (320px to 4K desktop)
 */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
  color: #ffffff;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #00d4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Language Selector */
.language-selector {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 80px;
}

.lang-toggle:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.current-lang-flag {
  font-size: 16px;
}

.current-lang-code {
  font-weight: 600;
}

.lang-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.lang-toggle.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  min-width: 200px;
}

.lang-dropdown-content {
  padding: 8px 0;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.lang-option:hover {
  background: rgba(0, 212, 255, 0.1);
}

.lang-option.active {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
}

.lang-option-flag {
  font-size: 16px;
  flex-shrink: 0;
}

.lang-option-name {
  flex-grow: 1;
  font-weight: 500;
}

.lang-option-code {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}

/* Background Video Container */
#background-video-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

#background-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 1;
}

/* Hero Section - Mobile First (320px+) */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-bottom: 20px;
}

.title-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #00d4ff, #0099cc, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.title-sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  color: #cccccc;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  line-height: 1.8;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
}

.download-banner {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.download-banner:hover {
  transform: translateY(-2px);
}

.download-banner:active {
  transform: translateY(0);
}

.download-banner img {
  display: block;
  max-width: 180px;
  height: auto;
}

/* Coming Soon Notice */
.coming-soon-notice {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
}

.coming-soon-notice p {
  color: #ffc107;
  font-weight: 500;
  margin: 0;
}

/* Section Styles */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,212,255,0.2);
  border-color: rgba(0,212,255,0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00d4ff;
}

.feature-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Screenshots Section */
.screenshots-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.screenshots-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,212,255,0.2);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Game Demo Section */
.game-demo-section {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.demo-description {
  text-align: center;
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ascii-game-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(0,212,255,0.3);
  border-radius: 12px;
  overflow: hidden;
}

.game-header {
  background: rgba(0,0,0,0.8);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.score-display, .lives-display, .level-display {
  color: #00d4ff;
  font-weight: 600;
  font-size: 1rem;
}

.game-area {
  background: #000000;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-screen, .game-over-screen {
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
}

.start-screen h3, .game-over-screen h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00d4ff;
}

.controls-info {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.controls-info p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

#game-canvas {
  width: 100%;
  height: auto;
  max-height: 600px;
}

.game-controls {
  background: rgba(0,0,0,0.8);
  padding: 15px;
  text-align: center;
}

.game-btn, .restart-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.game-btn:hover, .restart-btn:hover {
  background: linear-gradient(45deg, #34ce57, #2dd4aa);
  transform: translateY(-2px);
}

/* Email Section */
.email-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.email-signup-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.email-description {
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.email-signup-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.email-input {
  padding: 15px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.email-input::placeholder {
  color: #888888;
}

/* Checkbox Styles */
.preferences-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #00d4ff;
  border-color: #00d4ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 3px;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #00b8ff, #0088bb);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,212,255,0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: inline;
}

/* Form Message */
.form-message {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 8px 25px rgba(0,212,255,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00d4ff;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
  color: #00d4ff;
  margin-bottom: 15px;
}

.footer-section h3 {
  font-size: 1.5rem;
}

.footer-section h4 {
  font-size: 1.2rem;
}

.footer-section p {
  color: #cccccc;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  color: #cccccc;
  margin-bottom: 8px;
  padding-left: 0;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d4ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: #888888;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-bottom a {
  color: #00d4ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Tablet Styles (768px+) */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
  
  .title-main {
    font-size: 3.5rem;
  }
  
  .title-sub {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .download-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .screenshots-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  
  .checkbox-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .title-main {
    font-size: 4.5rem;
  }
  
  .title-sub {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  
  .screenshots-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .game-header {
    padding: 20px 30px;
  }
  
  .email-signup-card {
    padding: 50px 40px;
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop Styles (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
    padding: 0 80px;
  }
  
  .title-main {
    font-size: 5rem;
  }
  
  .section-title {
    font-size: 3.2rem;
  }
  
  .features-grid {
    gap: 40px;
  }
  
  .screenshots-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  
  .ascii-game-container {
    max-width: 1100px;
  }
}

/* 4K and Ultra-wide Styles (2560px+) */
@media (min-width: 2560px) {
  .container {
    max-width: 2000px;
    padding: 0 100px;
  }
  
  .title-main {
    font-size: 6rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  section {
    padding: 120px 0;
  }
  
  .screenshots-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
}

/* Accessibility and Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .loading-spinner {
    animation: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .features-section,
  .screenshots-section,
  .game-demo-section,
  .email-section,
  .stats-section,
  .main-footer {
    background: #000000 !important;
  }
  
  .feature-card,
  .email-signup-card,
  .stat-card {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
  }
}

/* ===============================
   Roadmap Section
   =============================== */
.roadmap-section {
  background: linear-gradient(135deg, #000011 0%, #001122 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(0,212,255,0.1)"/><circle cx="30" cy="30" r="0.5" fill="rgba(0,212,255,0.2)"/><circle cx="70" cy="20" r="1.5" fill="rgba(0,212,255,0.1)"/><circle cx="90" cy="80" r="1" fill="rgba(0,212,255,0.15)"/></svg>') repeat;
  animation: float 20s ease-in-out infinite;
}

.roadmap-description {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #b0b0b0;
  margin-top: 20px;
  margin-bottom: 60px;
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #00d4ff, rgba(0, 212, 255, 0.3));
  transform: translateX(-50%);
  border-radius: 2px;
}

.roadmap-item {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.roadmap-item:nth-child(odd) {
  flex-direction: row;
}

.roadmap-item:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-content {
  width: calc(50% - 30px);
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.roadmap-content:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.roadmap-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  transform: translateY(-50%);
}

.roadmap-item:nth-child(odd) .roadmap-content::before {
  right: -30px;
  border-left-color: rgba(0, 212, 255, 0.2);
}

.roadmap-item:nth-child(even) .roadmap-content::before {
  left: -30px;
  border-right-color: rgba(0, 212, 255, 0.2);
}

.roadmap-marker {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #00d4ff;
  border: 4px solid #001122;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.roadmap-marker.completed {
  background: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.roadmap-marker.current {
  background: #ffaa00;
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.roadmap-phase {
  font-size: 0.9rem;
  color: #00d4ff;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roadmap-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.roadmap-description-text {
  color: #b0b0b0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.5;
  margin-bottom: 15px;
}

.roadmap-status {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roadmap-status.completed {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.roadmap-status.current {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.roadmap-status.planned {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Responsive Roadmap */
@media (max-width: 768px) {
  .roadmap-timeline::before {
    left: 30px;
  }

  .roadmap-item {
    flex-direction: row !important;
  }

  .roadmap-content {
    width: calc(100% - 80px);
    margin-left: 60px;
  }

  .roadmap-content::before {
    left: -30px !important;
    right: auto !important;
    border-right-color: rgba(0, 212, 255, 0.2) !important;
    border-left-color: transparent !important;
  }

  .roadmap-marker {
    left: 30px;
  }
}

/* Print Styles */
@media print {
  .loading-screen,
  .ascii-game-container,
  .download-buttons {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .features-section,
  .screenshots-section,
  .email-section,
  .stats-section {
    background: white !important;
  }
}