/** Shopify CDN: Minification failed

Line 10:21 Expected ")" to end URL token

**/

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url({{ 'chaos-bg.png' | asset_url }}) no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}
h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
  color: #ff2e92;
  text-shadow: 0 0 8px #3ebfff;
}
a, button {
  background: linear-gradient(45deg, #ff2e92, #3ebfff, #a9ff3e);
  border: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover, button:hover {
  box-shadow: 0 0 15px #ff2e92, 0 0 25px #3ebfff;
  transform: scale(1.05);
}
header, footer {
  background: rgba(0,0,0,0.8);
  padding: 20px;
  text-align: center;
}


a, button, .btn {
  background: linear-gradient(135deg, #ff2e92, #3ebfff, #a9ff3e);
  border: none;
  color: #000;
  padding: 12px 28px;
  border-radius: 35px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  position: relative;
  box-shadow: 0 0 12px rgba(255, 46, 146, 0.7),
              0 0 20px rgba(62, 191, 255, 0.6),
              0 0 30px rgba(169, 255, 62, 0.5);
}

a:hover, button:hover, .btn:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 0 20px #ff2e92,
              0 0 30px #3ebfff,
              0 0 40px #a9ff3e;
  animation: chaos-shake 0.3s ease-in-out;
}

@keyframes chaos-shake {
  0% { transform: scale(1.08) rotate(-1deg) translateX(0); }
  25% { transform: scale(1.08) rotate(-1deg) translateX(-2px); }
  50% { transform: scale(1.08) rotate(-1deg) translateX(2px); }
  75% { transform: scale(1.08) rotate(-1deg) translateX(-2px); }
  100% { transform: scale(1.08) rotate(-1deg) translateX(0); }
}


/* Section fade/slide animations */
.shopify-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.shopify-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Chaos Loading Screen */
#chaos-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#chaos-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#chaos-loader .swirl {
  width: 150px; height: 150px;
  border: 5px solid transparent;
  border-top: 5px solid #ff2e92;
  border-right: 5px solid #3ebfff;
  border-bottom: 5px solid #a9ff3e;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  position: absolute;
}

#chaos-loader img {
  position: relative;
  max-height: 80px;
  z-index: 2;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Chaos Cursor Particles */
.chaos-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: screen;
  z-index: 99999;
  animation: chaos-fade 0.6s forwards;
}

@keyframes chaos-fade {
  from { transform: scale(1) translate(0,0); opacity: 1; }
  to { transform: scale(0.2) translate(20px,20px); opacity: 0; }
}


/* Hero Chaos */
.chaos-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}
.chaos-hero-overlay {
  background: rgba(0,0,0,0.6);
  display: inline-block;
  padding: 40px;
  border-radius: 20px;
}
.chaos-hero h1 {
  font-size: 3rem;
  color: #ff2e92;
  text-shadow: 0 0 10px #ff2e92, 0 0 20px #3ebfff;
}
.chaos-hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.chaos-button {
  background: linear-gradient(90deg, #ff2e92, #3ebfff, #a9ff3e);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}
.chaos-button:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 0 15px #ff2e92, 0 0 30px #3ebfff;
}

/* Featured Chaos */
.chaos-featured {
  padding: 60px 20px;
  text-align: center;
}
.chaos-featured h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #3ebfff;
  text-shadow: 0 0 8px #ff2e92;
}
.chaos-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.chaos-product-card {
  background: #111;
  padding: 15px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.chaos-product-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 0 20px #ff2e92, 0 0 40px #3ebfff;
}
.chaos-product-card h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #fff;
}
.chaos-product-card p {
  color: #a9ff3e;
  font-weight: bold;
}
