/*
Theme Name: MusikTeam Ulli & Tim
Theme URI: https://musikteamullitim.local
Author: MusikTeam Ulli & Tim
Description: Custom One-Pager Theme für DJ Ulli & Tim – Ostfriesland
Version: 1.0
License: Private
Text Domain: musikteam
*/

:root {
  --neon-pink: #FF006E;
  --neon-cyan: #00F5FF;
  --neon-purple: #BF00FF;
  --neon-green: #00FF9F;
  --bg-black: #050510;
  --bg-dark: #0A0A1A;
  --bg-card: rgba(255,255,255,0.04);
  --text-white: #F8FAFC;
  --text-muted: #A0AEC0;
  --border-glass: rgba(255,255,255,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 3px; }

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,5,16,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s;
}

.nav-logo {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-cta {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(255,0,110,0.4);
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 40px rgba(255,0,110,0.8) !important;
  transform: translateY(-1px);
  color: #fff !important;
  text-shadow: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(191,0,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0,245,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(255,0,110,0.08) 0%, transparent 70%);
  z-index: -1;
}

.hero-eq {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 120px;
  padding: 0 1rem;
  opacity: 0.15;
  z-index: -1;
}

.hero-eq-bar {
  width: 8px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--neon-pink), var(--neon-cyan));
  animation: eq-bounce var(--d, 0.6s) ease-in-out infinite alternate;
}

@keyframes eq-bounce {
  from { height: 10%; }
  to   { height: 100%; }
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid rgba(0,245,255,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s ease both;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.hero-title {
  font-family: 'Righteous', cursive;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 40%, var(--neon-pink) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(0,245,255,0.5));
  animation: fade-up 0.8s 0.1s ease both, title-glow 3s 1s ease-in-out infinite alternate;
}

@keyframes title-glow {
  from { filter: drop-shadow(0 0 30px rgba(0,245,255,0.4)); }
  to   { filter: drop-shadow(0 0 60px rgba(255,0,110,0.6)); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 600px;
  animation: fade-up 0.8s 0.2s ease both;
}

.hero-subtitle span {
  color: var(--neon-pink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255,0,110,0.5), 0 4px 20px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s, transform 0.2s;
  animation: pulse-pink 2s infinite;
}

@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 30px rgba(255,0,110,0.5), 0 4px 20px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 60px rgba(255,0,110,0.8), 0 4px 30px rgba(0,0,0,0.4); }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255,0,110,0.9), 0 8px 30px rgba(0,0,0,0.4);
  animation: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--neon-cyan);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 1px solid rgba(0,245,255,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(0,245,255,0.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0,245,255,0.3);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fade-up 0.8s 0.4s ease both;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Righteous', cursive;
  font-size: 2rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Righteous', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.neon-cyan   { color: var(--neon-cyan);   text-shadow: 0 0 20px var(--neon-cyan); }
.neon-pink   { color: var(--neon-pink);   text-shadow: 0 0 20px var(--neon-pink); }
.neon-purple { color: var(--neon-purple); text-shadow: 0 0 20px var(--neon-purple); }

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  border-radius: 2px;
  margin: 1rem 0 2rem;
  box-shadow: 0 0 12px rgba(255,0,110,0.5);
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,245,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,245,255,0.1);
}

/* ── ABOUT ── */
#about { background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.dj-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.dj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dj-card:hover img { transform: scale(1.05); }

.dj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,16,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.dj-name {
  font-family: 'Righteous', cursive;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0,245,255,0.8);
}

.dj-role {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dj-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.dj-card:hover .dj-border-glow { opacity: 1; }

.about-text h3 {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0,245,255,0.5);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.genre-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tag-cyan   { color: var(--neon-cyan);   border-color: rgba(0,245,255,0.4);  background: rgba(0,245,255,0.06); }
.tag-pink   { color: var(--neon-pink);   border-color: rgba(255,0,110,0.4);  background: rgba(255,0,110,0.06); }
.tag-purple { color: var(--neon-purple); border-color: rgba(191,0,255,0.4);  background: rgba(191,0,255,0.06); }
.tag-green  { color: var(--neon-green);  border-color: rgba(0,255,159,0.4);  background: rgba(0,255,159,0.06); }

/* ── SERVICES ── */
#services { background: var(--bg-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-color-a, rgba(0,245,255,0.05)), var(--card-color-b, rgba(191,0,255,0.05)));
  z-index: -1;
}

.service-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid;
  position: relative;
}

.service-icon-wrap svg { width: 36px; height: 36px; }

.service-card h3 {
  font-family: 'Righteous', cursive;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  margin-top: 1rem;
  text-align: left;
}

.service-card ul li {
  font-size: 0.825rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* ── MEDIA ── */
#media { background: var(--bg-black); }

.media-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-main { grid-row: span 2; }

.video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 40px rgba(191,0,255,0.2);
  transition: box-shadow 0.3s;
}

.video-wrap:hover { box-shadow: 0 0 60px rgba(191,0,255,0.4); }

.video-wrap iframe { width: 100%; height: 100%; border: none; }

.photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-glass);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.photo-card:hover img { transform: scale(1.08); }

.photo-card-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(5,5,16,0.7);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  letter-spacing: 1px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
}

.gallery-thumb:hover img { transform: scale(1.1); }

/* ── TESTIMONIALS ── */
#testimonials {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card { padding: 2rem; position: relative; }

.stars {
  color: #FFD700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-text::before { content: '\201E'; color: var(--neon-cyan); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.2rem; font-style: normal; }
.testimonial-text::after  { content: '\201C'; color: var(--neon-cyan); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-left: 0.2rem; font-style: normal; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,245,255,0.4);
}

.author-name { font-weight: 600; font-size: 0.875rem; color: #fff; }
.author-event { font-size: 0.75rem; color: var(--neon-pink); }

/* ── CONTACT ── */
#contact { background: var(--bg-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0,245,255,0.4);
}

.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; color: var(--neon-cyan); }

.contact-item-text p:first-child { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text p:last-child  { font-weight: 600; color: #fff; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group select option { background: var(--bg-dark); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,245,255,0.5);
  box-shadow: 0 0 20px rgba(0,245,255,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(255,0,110,0.4);
  transition: box-shadow 0.3s, transform 0.2s;
}

.form-submit:hover {
  box-shadow: 0 0 50px rgba(255,0,110,0.7);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border-glass);
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-logo {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 30px var(--neon-cyan);
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

.social-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.social-link:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
  transform: translateY(-2px);
}

.social-link svg { width: 20px; height: 20px; }

.footer-bottom {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ── WAVEFORM ── */
.waveform-deco { display: flex; align-items: center; gap: 3px; margin: 1.5rem 0; }

.wave-bar {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--neon-cyan), var(--neon-purple));
  opacity: 0.6;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,5,16,0.97); backdrop-filter: blur(20px); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-glass); gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .video-main { grid-row: auto; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
