/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* Branding Variables & Theme Setup */
:root {
  /* Colors */
  --background: #0A0A0D;
  --foreground: #FFFFFF;
  --border: #ffffff14;
  --input: #111116;
  --primary: #FF2D95;
  --primary-foreground: #FFFFFF;
  --secondary: #00D0FF;
  --secondary-foreground: #001826;
  --muted: #FFF6CC;
  --muted-foreground: #6B5E00;
  --success: #22C55E;
  --success-foreground: #04220B;
  --accent: #FFD500;
  --accent-foreground: #1A1200;
  --destructive: #FF4D6D;
  --destructive-foreground: #2B0A10;
  --warning: #FFB02E;
  --warning-foreground: #2A1700;
  --card: #0F0F13;
  --card-foreground: #FFFFFF;
  --sidebar: #070709;
  --sidebar-foreground: #E6F7FF;
  --sidebar-primary: #FF2D95;
  --sidebar-primary-foreground: #FFFFFF;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Fonts */
  --font-family-body: 'DM Sans', 'DM Sans Fallback', sans-serif;
}

/* Base Reset & Typography */
body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-family-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
}

/* Utility Classes (Extracted from inline styles) */
.neon-bg-dark {
  background-color: #121216;
  color: #ffffff;
}

.neon-text-pink {
  color: var(--primary, #FF6EC7);
}

.neon-bg-pink {
  background-color: var(--primary, #FF6EC7);
  color: #000000;
}

.neon-bg-blue {
  background-color: var(--secondary, #4D4DFF);
  color: #ffffff;
}

.neon-border-blue {
  border: 3px solid var(--secondary, #4D4DFF);
}

.neon-bg-yellow {
  background-color: var(--accent, #FAFF00);
  color: #000000;
}

/* Component Styles */
.chunky-card {
  border-radius: 24px;
  border: 3px solid var(--accent, #FAFF00);
  background-color: #1E1E24;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.chunky-card:hover {
  transform: translateY(-5px);
}

.chunky-btn {
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border: none;
  transition: filter 0.2s;
}

.chunky-btn:hover {
  filter: brightness(1.1);
}

.nav-link {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.topping-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}

.topping-circle:hover {
  transform: scale(1.05);
}

.topping-circle.active {
  border-color: var(--accent, #FAFF00);
  background-color: rgba(250, 255, 0, 0.1);
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* Layout Helpers */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-padding {
  padding: 80px 48px;
}

/* Responsive Design */
@media (max-width: 768px) {

  /* Navigation */
  nav {
    padding: 24px !important;
    flex-direction: column;
    gap: 20px;
  }

  nav>div:last-child {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Hero */
  header {
    padding: 40px 24px !important;
  }

  header h1 {
    font-size: 42px !important;
  }

  header p {
    font-size: 16px !important;
  }

  /* Sections */
  .section-padding {
    padding: 48px 24px !important;
  }

  /* Mix Your Own Section */
  .mix-container {
    flex-direction: column;
  }

  .mix-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }

  .configurator-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Footer */
  footer {
    padding: 48px 24px !important;
    gap: 32px !important;
    grid-template-columns: 1fr !important;
  }
}

/* Hide Scrollbar Utility */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}