:root {
  /* Colors - Bollywood Glitz & Cinema Theme */
  --color-gold: #FFD700;
  --color-gold-glow: rgba(255, 215, 0, 0.5);
  --color-ruby: #E0115F;
  --color-deep-space: #050505;
  --color-surface: #121212;
  --color-surface-soft: #1E1E1E;
  --color-text-main: #FFFFFF;
  --color-text-muted: #A0A0A0;
  --color-accent: #00F2FF;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Effects */
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

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

body {
  font-family: var(--font-body);
  background-color: var(--color-deep-space);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display-font {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

section {
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0;
}

main > :first-child {
  margin-top: 0;
}

/* Components */
.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-gold);
  color: black;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: white;
}

.btn-outline:hover {
  border-color: var(--color-gold);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

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

.hero-tagline {
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #FFF 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.hero-visual {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 80vh;
  z-index: 1;
  opacity: 0.6;
}

/* Feature Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--glass-border);
  padding: var(--space-md);
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

/* Gallery / Video Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.video-card {
  aspect-ratio: 16/9;
  background: var(--color-surface-soft);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-card .placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover .placeholder-image {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  opacity: 0;
  transition: var(--transition-smooth);
}

.video-card:hover .video-overlay {
  opacity: 1;
}

/* Creator Tool Area */
.creator-box {
  background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--color-gold);
  padding: var(--space-xl);
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.05);
}

.prompt-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  font-family: inherit;
  transition: var(--transition-smooth);
}

.prompt-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

.style-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.chip {
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chip.active, .chip:hover {
  background: var(--color-gold);
  color: black;
  border-color: var(--color-gold);
}

/* Footer */
footer {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--glass-border);
  background: #000;
}

/* Placeholders */
.placeholder-image {
  background: linear-gradient(45deg, #1e1e1e, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-image::after {
  content: attr(data-label);
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.placeholder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
}

/* Animations */
@keyframes goldPulse {
  0% { text-shadow: 0 0 5px var(--color-gold-glow); }
  50% { text-shadow: 0 0 20px var(--color-gold-glow); }
  100% { text-shadow: 0 0 5px var(--color-gold-glow); }
}

.animate-gold {
  animation: goldPulse 3s infinite;
}

/* Studio Specific Layout */
.studio-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  height: calc(100vh - 80px);
  margin-top: 80px;
}

.sidebar {
  border-right: 1px solid var(--glass-border);
  padding: var(--space-md);
  background: #0d0d0d;
  overflow-y: auto;
}

.preview-area {
  padding: var(--space-xl);
  background: radial-gradient(circle at center, #1a1a1a 0%, #080808 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gen-header {
  margin-bottom: var(--space-lg);
}

.setting-group {
  margin-bottom: var(--space-lg);
}

.setting-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.canvas-box {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.status-bar {
  margin-top: var(--space-md);
  display: flex;
  gap: 24px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.studio-body {
  background: #080808;
}
