:root {
  /* App Colors */
  --bg-start: #111625;
  --bg-end: #1A2235;
  --surface: #1E2638;
  --surface-dark: #151B2B;
  --border: #2A354D;
  
  --accent-primary: #FF8C00;
  --gradient-start: #FF7A00;
  --gradient-end: #FFB300;
  
  --text-primary: #FFFFFF;
  --text-secondary: #8E9BB0;
  --text-on-primary: #111625;

  /* Glassmorphism */
  --glass-bg: rgba(30, 38, 56, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Background Overlay */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('assets/hero_bg.png') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

/* Navigation */
.nav-content {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.logo {
    font-weight: 900;
    letter-spacing: -1px;
    /* Standardgröße für Desktop/Tablets */
    font-size: 5rem; 
}

/* Wenn der Bildschirm schmaler als 480px ist (Handy-Modus) */
@media (max-width: 480px) {
    .logo {
        font-size: 2rem; /* Hier wird es auf dem Handy kleiner eingestellt */
    }
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0 4rem 0;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

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

/* Phone Frame (LITE Game) */
.phone-frame {
  width: 310px;
  height: 620px;
  background: #111;
  border-radius: 40px;
  border: 10px solid #222;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px #333;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.phone-notch {
  width: 110px;
  height: 20px;
  background: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 100;
}

/* Game Card */
.game-card {
  flex: 1;
  background: var(--bg-start);
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Features */
.features {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.feature-card.reverse {
  direction: rtl;
}

.feature-card.reverse .feature-content,
.feature-card.reverse .feature-image {
  direction: ltr;
}

.feature-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-primary);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.feature-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 270px;
  height: 540px;
  background: #111;
  border: 8px solid #222;
  border-radius: 35px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: #000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Footer */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  background: rgba(0,0,0,0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
  background: rgba(255, 140, 0, 0.1);
  border-color: var(--accent-primary);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--text-on-primary);
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-store {
  display: inline-block;
  background: var(--surface);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Vinyl Player Styles (from previous turns) */
.vinyl-container {
  position: relative;
  width: 100%;
  margin: 1rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.vinyl-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 1;
}

.vinyl-progress circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}

.vinyl-progress .bg {
  stroke: rgba(255, 255, 255, 0.05);
}

.vinyl-progress .fg {
  stroke: var(--accent-primary);
  stroke-dasharray: 754;
  stroke-dashoffset: 754;
  transition: stroke-dashoffset 0.1s linear;
}

.vinyl-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  z-index: 2;
}

.vinyl-record {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.vinyl-art-overlay { display: none; }

.vinyl-arm {
  position: absolute;
  right: 0px;
  top: 30px;
  width: 100px;
  height: 130px;
  object-fit: contain;
  z-index: 10;
  transform: rotate(-25deg);
  transform-origin: 80% 20%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinyl-arm.active { transform: rotate(-5deg); }

.spinning { animation: spin 2s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Result Screen Styles */
.result-reveal {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  z-index: 50;
  background: #0d1117;
  overflow-y: auto;
  overflow-x: hidden;
}

.result-content {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  z-index: 1;
}

.result-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(40px) brightness(0.2);
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.result-answer-badge {
  background: var(--accent-primary);
  padding: 0.8rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
  width: 80%;
}

.result-cover-card {
  width: 160px;
  height: 160px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.result-info-box {
  text-align: center;
  margin-bottom: 2rem;
}

.result-info-box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.result-info-box h3 {
  font-size: 1.1rem;
  color: var(--accent-primary);
  opacity: 0.9;
}

/* SHUFFLE ANIMATION (Simplified) */
.shuffle-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.shuffle-header {
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.shuffle-cards-stack {
  position: relative;
  width: 160px;
  height: 200px;
}

.shuffle-card {
  position: absolute;
  width: 120px;
  height: 160px;
  background: var(--surface) url('assets/images/platte.png') no-repeat center center;
  background-size: 70%;
  border: 2px solid var(--accent-primary);
  border-radius: 15px;
  left: 20px;
  top: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.shuffle-card.animating {
  animation: shuffleStack 1.2s ease-in-out infinite;
}

@keyframes shuffleStack {
  0%, 100% { transform: scale(1) rotate(-15deg); }
  50% { transform: scale(1.1) rotate(15deg); }
}

/* Store Buttons & Badges */
.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-block;
  transition: transform 0.2s ease, filter 0.2s ease;
  height: 44px;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.store-badge-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* App Store Badge - Coming Soon */
.store-badge-coming-soon {
  position: relative;
  display: inline-block;
  height: 44px;
  cursor: default;
}

.store-badge-coming-soon .store-badge-img {
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.store-badge-coming-soon:hover .store-badge-img {
  opacity: 0.6;
}

.coming-soon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #FF3B30, #FF9500);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.3);
  pointer-events: none;
  white-space: nowrap;
}

/* Contact Section */
.contact {
  padding-bottom: 6rem;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 650px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 0, 0.3);
}

.contact-icon {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  max-width: 480px;
  line-height: 1.6;
}

.contact-text a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
  border-bottom: 2px solid rgba(255, 140, 0, 0.3);
  padding-bottom: 2px;
}

.contact-text a:hover {
  opacity: 0.8;
  border-bottom-color: var(--accent-primary);
}

.contact-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  min-width: 220px;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .feature-card {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .feature-card.reverse { direction: ltr; }
  .feature-content h2 { font-size: 2.2rem; }
  .features { gap: 6rem; padding: 4rem 0; }
  .phone-mockup { width: 240px; height: 480px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { width: 100%; justify-content: center; }
  .footer-links a { flex: 1; text-align: center; font-size: 0.8rem; }
  .feature-content h2 { font-size: 2rem; }
  .bg-overlay { opacity: 0.2; }
  
  .contact-card { padding: 2rem 1.2rem; gap: 1.2rem; }
  .contact-text { font-size: 1rem; }
  .contact-btn { width: 100%; }
}
