@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0d0b09;
  --bg-secondary: #15120e;
  --bg-card: #1a1610;
  --bg-card-hover: #201c14;
  --accent-pink: #ff2d9b;
  --accent-pink-soft: #ff6ec7;
  --accent-purple: #b44dff;
  --accent-blue: #4d9fff;
  --text-primary: #f0ece6;
  --text-muted: #9a8e80;
  --text-dim: #5e564e;
  --border-color: #2a2520;
  --gradient-pink: linear-gradient(135deg, #ff2d9b, #b44dff);
  --gradient-cosmic: linear-gradient(135deg, #0d0b09, #1a1410, #0d0b09);
  --gradient-glow: linear-gradient(135deg, rgba(255,45,155,0.15), rgba(180,77,255,0.15));
  --glow-pink: 0 0 20px rgba(255,45,155,0.3), 0 0 40px rgba(255,45,155,0.1);
  --glow-purple: 0 0 20px rgba(180,77,255,0.3), 0 0 40px rgba(180,77,255,0.1);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

input {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,45,155,0.5), 0 0 60px rgba(255,45,155,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--accent-pink);
  border: 1.5px solid var(--accent-pink);
}

.btn-outline:hover {
  background: rgba(255,45,155,0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.glass {
  background: rgba(18,18,26,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  border: none;
}

.glow-line {
  height: 2px;
  background: var(--gradient-pink);
  border: none;
  opacity: 0.4;
}

.page-content {
  padding-top: 80px;
  min-height: 100vh;
}

.starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.starfield .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur) ease-in-out infinite alternate;
  opacity: 0;
}

@keyframes twinkle {
  0% { opacity: 0.1; transform: scale(0.8); }
  100% { opacity: var(--max-opacity, 0.8); transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--glow-pink); }
  50% { box-shadow: 0 0 30px rgba(255,45,155,0.5), 0 0 60px rgba(255,45,155,0.2); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.nebula-bg {
  position: relative;
}

.nebula-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,45,155,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.nebula-bg::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180,77,255,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.product-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder.tshirt {
  background: linear-gradient(145deg, #1a0a2e, #0a0a0f, #1a0a2e);
}

.product-placeholder.hoodie {
  background: linear-gradient(145deg, #0a0a0f, #1a1028, #0a0a0f);
}

.product-placeholder.jacket {
  background: linear-gradient(145deg, #14081e, #0a0a0f, #0d0820);
}

.product-placeholder.pants {
  background: linear-gradient(145deg, #0a0a0f, #0e0a20, #0a0a0f);
}

.product-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,45,155,0.15);
  border-radius: var(--radius);
  pointer-events: none;
}

.product-placeholder .ph-icon {
  font-size: 3rem;
  color: var(--text-dim);
  opacity: 0.5;
}

.product-placeholder .ph-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section {
    padding: 80px 0;
  }
  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 48px;
  }
  .btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* === Social SVG Icons === */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-socials a:hover {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
  box-shadow: 0 0 15px rgba(255,45,155,0.25);
  transform: translateY(-2px);
}

/* === Spaceship Page Transition === */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.ship-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spaceship {
  width: 60px;
  height: 90px;
  animation: ship-hover 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,45,155,0.5));
}

.page-transition-overlay.active .spaceship {
  animation: ship-launch 0.7s ease-in forwards;
}

.engine-glow {
  animation: engine-pulse 0.3s ease-in-out infinite alternate;
}

.page-transition-overlay.active .engine-glow {
  animation: engine-blast 0.15s ease-in-out infinite alternate;
}

.ship-trail {
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent-pink), var(--accent-purple), transparent);
  border-radius: 2px;
  margin-top: -2px;
}

.page-transition-overlay.active .ship-trail {
  animation: trail-expand 0.7s ease-in forwards;
}

@keyframes ship-hover {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes ship-launch {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  40% { transform: translateY(0) scale(1.1); opacity: 1; }
  100% { transform: translateY(-600px) scale(0.3); opacity: 0; }
}

@keyframes engine-pulse {
  0% { opacity: 0.3; transform: scaleY(0.8); }
  100% { opacity: 0.7; transform: scaleY(1.2); }
}

@keyframes engine-blast {
  0% { opacity: 0.6; transform: scaleY(1) scaleX(1); }
  100% { opacity: 1; transform: scaleY(2.5) scaleX(1.8); }
}

@keyframes trail-expand {
  0% { height: 0; opacity: 0; }
  30% { height: 40px; opacity: 1; }
  100% { height: 300px; opacity: 0; }
}

/* === Footer === */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-style: italic;
}
