:root {
  --bg-color: #0a0a0a;
  --text-color: #ffffff;
  --accent-color: #00f3ff;
  /* Cyan/Neon Blue */
  --accent-secondary: #9d00ff;
  /* Neon Purple */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --spacing-unit: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Background Overlay */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 30, 0.2) 100%), url('assets/Arcfall background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.background-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

/* Header */
.studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.studio-logo-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.studio-logo-img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.studio-logo-text {
  font-family: 'Goldman', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-color);
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 5%;
}

.content-wrapper {
  max-width: 800px;
  animation: fadeIn 1.5s ease-out;
}

.logo-wrapper {
  margin-bottom: 0;
  perspective: 1000px;
}

.game-logo {
  max-width: 100%;
  width: 600px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.game-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.highlight {
  color: var(--accent-color);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.question {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

/* Store Badges */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge img {
  height: 60px;
  width: auto;
  display: block;
}

.store-badge.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.store-badge:not(.disabled):hover {
  transform: scale(1.05);
}

/* Timer */
.release-timer {
  margin-top: 2rem;
}

.timer-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-unit span:first-child {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.time-unit .label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .studio-logo-img {
    height: 45px;
  }

  .studio-logo-text {
    font-size: 1.1rem;
  }

  .game-logo {
    width: 100%;
  }

  .store-badge img {
    height: 50px;
  }

  .timer-display {
    gap: 1rem;
  }

  .time-unit span:first-child {
    font-size: 1.8rem;
  }
}

/* Footer */
.studio-footer {
  width: 100%;
  padding: 1rem 5%;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-left .logo-container {
  gap: 10px;
}

.footer-left .studio-logo-img {
  height: 40px;
}

.footer-left .studio-logo-text {
  font-size: 1.1rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer-nav a:hover {
  color: var(--accent-color);
  opacity: 1;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  margin-top: 0.3rem;
}

/* Responsive for footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left {
    align-items: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-content .logo-container {
    justify-content: center;
  }
}