/* =========================================
   iamnevermarsh — style.css
   chaos is the aesthetic
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Bebas+Neue&family=Permanent+Marker&display=swap');

:root {
  --black: #0a0a0a;
  --white: #f0ece0;
  --purple: #8b2fc9;
  --purple-bright: #c44dff;
  --yellow: #e8d44d;
  --leopard-tan: #d4a84b;
  --pink: #ff4d8f;
  --teal: #00e5cc;
  --orange: #ff6b1a;
  --star-white: #f0ece0;

  --font-display: 'Bebas Neue', sans-serif;
  --font-marker: 'Permanent Marker', cursive;
  --font-mono: 'Space Mono', monospace;
}

/* =========================================
   RESET + BASE
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  cursor: crosshair;
  overflow-x: hidden;
}

/* grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

a {
  color: var(--purple-bright);
  text-decoration: none;
}

a:hover {
  color: var(--yellow);
}

/* =========================================
   SCROLLBAR
   ========================================= */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--purple); }
::-webkit-scrollbar-thumb:hover { background: var(--purple-bright); }

/* =========================================
   NAV
   ========================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 77, 255, 0.25);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--purple-bright);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

nav ul a:hover {
  opacity: 1;
  transform: scale(1.2);
  color: var(--purple-bright);
}

/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 4rem 4rem;
  gap: 3rem;
  position: relative;
  overflow: hidden; 
  background-image: url('tiled.jpg');
  background-repeat: repeat;
  background-size: 800px;
  background-attachment: fixed; 
} 


.hero-desktop-wrapper {
  background-color: var(--black);
  padding: 2.5rem;
  border: 2px solid var(--purple-bright);
  box-shadow: -10px 10px 0px var(--purple-bright); 
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.3s;
}

.win-icon-box {
  width: 80px;
  height: 80px;
  background: var(--black); 
  border: 2px solid var(--purple-bright); 
  box-shadow: 4px 4px 0px var(--purple-bright); 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  transition: transform 0.1s;
}

.win-icon-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--purple-bright);
  padding: 2px 5px;
  margin-top: 8px;
}

.hero-desktop-wrapper {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.3s;
}
  
/* image tile background */
  background-image: url('tiled.jpg');
  background-repeat: repeat;
  background-size: 800px;
  background-attachment: fixed; 
}

/* graffiti-style bg blobs */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(139, 47, 201, 0.18) 0%, transparent 80%);
  pointer-events: none;
}

.hero-text {
  z-index: 2;
  background-color: #000000;
  padding: 2rem;
  margin-left: -1rem; 
  border: 2px solid var(--purple-bright);
  box-shadow: 10px 10px 0px var(--purple-bright);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-name .never {
  color: var(--purple-bright);
  display: block;
  -webkit-text-stroke: 1px var(--purple-bright);
}

.hero-name .marsh {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
   filter: drop-shadow(0 0 5px var(--white));
  display: block;
}

.hero-tagline {
  font-family: var(--font-marker);
  font-size: 1rem;
  color: var(--yellow);
  margin: 1.5rem 0 2rem;
  opacity: 0.9;
}

.hero-tagline span {
  color: var(--white);
  opacity: 0.5;
  margin: 0 0.5rem;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--purple-bright);
  padding: 0.75rem 2rem;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.hero-cta:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translate(-2px, -2px);
}

.hero-image {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 460px;
  display: block;
  filter: contrast(1.05) saturate(1.1);
  clip-path: polygon(5% 0%, 95% 2%, 100% 90%, 90% 100%, 2% 98%, 0% 10%);
  border: 2px solid rgba(196, 77, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.name-wrap {
  position: relative;
  display: inline-block;
}

.hero-smile {
position: absolute;
  /* Shift further right: change -60px to -100px or more */
  right: -200px; 
  top: 15%;
  /* Make it bigger: change 50px to 80px or 100px */
  width: 120px;  
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 0 8px var(--purple-bright));
  animation: orbit 5s linear infinite;
}

/* Suble circular "orbit" animation */
@keyframes orbit {
  from { transform: rotate(0deg) translateX(5px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(5px) rotate(-360deg); }
}

/* Ensure it doesn't overlap on small screens */
@media (max-width: 600px) {
  .hero-smile {
    display: none; /* Or scale it down */
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* =========================================
   MARQUEE TICKER
   ========================================= */

.marquee-wrap {
  overflow: hidden;
  background: var(--purple);
  padding: 0.6rem 0;
  border-top: 1px solid var(--purple-bright);
  border-bottom: 1px solid var(--purple-bright);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  padding: 0 2rem;
}

.marquee-track .dot {
  color: var(--yellow);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   PILLARS SECTION
   ========================================= */

.section-pillars {
  padding: 6rem 4rem;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3rem;
  color: var(--white);
}

.section-title em {
  font-style: normal;
  color: var(--yellow);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(196, 77, 255, 0.2);
}

.pillar-card {
  background: var(--black);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  transition: width 0.4s ease;
}

.pillar-card:hover::before {
  width: 100%;
}

.pillar-card:hover {
  background: #111;
}

.pillar-card.art::before    { background: var(--pink); }
.pillar-card.cyber::before  { background: var(--teal); }
.pillar-card.frugal::before { background: var(--yellow); }
.pillar-card.code::before   { background: var(--purple-bright); }

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--purple-bright);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(240, 236, 224, 0.6);
  max-width: 38ch;
}

.pillar-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(196, 77, 255, 0.35);
  color: var(--purple-bright);
  opacity: 0.8;
}

/* =========================================
   ABOUT SECTION
   ========================================= */

.section-about {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,0.06);
  
  background-image: url('tiled.jpg');
  background-repeat: repeat;
  background-size: 800px;
  background-attachment: fixed; 
}

.about-sidebar {
  position: sticky;
  top: 6rem;
}

.about-sidebar .section-label {
  background: #000;
  color: var(--purple-bright);
  padding: 0.4rem 0.8rem;
  display: inline-block;
  border: 1px solid var(--purple-bright);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.about-num {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--purple-bright);
  filter: drop-shadow(0 0 5px var(--purple-bright));
  opacity: 0.6;
  user-select: none;
}

.about-body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-body p {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(240, 236, 224, 0.7);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}

.about-body p strong {
  color: var(--purple-bright);
  font-weight: 700;
}

.about-body {
  background-color: #000000;
  padding: 3rem;
  z-index: 2;
  border: 2px solid var(--purple-bright);
  box-shadow: 10px 10px 0px var(--purple-bright);
  max-width: 100%; 
}

.about-profile-img {
  width: 200px; /* Adjust size as needed */
  height: auto;
  float: right; /* Wraps text around the image */
  margin-left: 2rem;
  margin-bottom: 1rem;
  border: 2px solid var(--purple-bright);
  box-shadow: 6px 6px 0px var(--purple-bright);
  transform: rotate(3deg); /* Subtle tilt for that handmade feel */
  clip-path: polygon(2% 0%, 98% 5%, 100% 95%, 5% 100%, 0% 10%); /* Jagged edges */
}


@media (max-width: 600px) {
  .about-profile-img {
    float: none;
    display: block;
    margin: 0 auto 2rem;
    width: 100%;
    max-width: 300px;
  }
}

.star-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
  opacity: 0.4;
}

.star-divider::before,
.star-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--white);
}

.star-divider span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

/* =========================================
   CONNECT SECTION
   ========================================= */

.section-connect {
  padding: 6rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(196, 77, 255, 0.15);
  margin-top: 3rem;
}

.connect-item {
  background: var(--black);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.connect-item:hover {
  background: #111;
}

.connect-item .platform-icon {
  font-size: 1.8rem;
  display: block;
}

.connect-item span.label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 236, 224, 0.5);
  display: block;
}

.connect-item a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  display: block;
  transition: color 0.2s;
}

.connect-item:hover a {
  color: var(--purple-bright);
}

/* =========================================
   NOW PLAYING / WEBRING STRIP
   ========================================= */

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: #0f0f0f;
  border-top: 1px solid rgba(196, 77, 255, 0.15);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(240, 236, 224, 0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-bar span {
  color: var(--purple-bright);
  opacity: 0.7;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  padding: 2rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(240, 236, 224, 0.25);
}

footer a {
  color: rgba(196, 77, 255, 0.5);
}

footer a:hover {
  color: var(--purple-bright);
}

/* =========================================
   EVERYTHING & NOTHING
   ========================================= */

.section-everything {
  padding: 5rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0d0d0d;
}

.everything-inner {
  max-width: 900px;
}

.everything-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2rem;
}

.everything-list li {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 236, 224, 0.2);
  padding: 0.15rem 1.5rem 0.15rem 0;
  transition: color 0.2s, -webkit-text-stroke 0.2s;
  cursor: default;
}

.everything-list li:hover {
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--yellow);
}

.everything-list li::after {
  content: ' ✦';
  font-size: 0.5em;
  color: var(--purple-bright);
  opacity: 0.4;
  vertical-align: middle;
  margin-left: 0.8em;
}

.everything-list li:last-child::after {
  content: ' ✦';
  color: var(--pink);
  opacity: 0.6;
}

/* =========================================
   CONNECT SECTION (4-col override)
   ========================================= */

.connect-grid {
  grid-template-columns: repeat(4, 1fr);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero-name     { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.hero-tagline  { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }
.hero-cta      { animation: fadeUp 0.6s ease both; animation-delay: 0.5s; }
.hero-image    { animation: fadeUp 0.8s ease both; animation-delay: 0.3s; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 2rem 3rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 280px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .section-about {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .about-sidebar {
    position: static;
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-pillars,
  .section-connect {
    padding: 4rem 2rem;
  }

  nav ul {
    gap: 1rem;
  }

  .status-bar,
  footer {
    padding: 1rem 2rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .connect-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   WINDOWS DESKTOP ICONS
   ========================================= */

.win-desktop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.win-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  width: 90px;
}

.win-icon-box {
  width: 80px;
  height: 80px;
  background: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}

.win-icon-box::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
}

.win-icon:active .win-icon-box {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.win-icon-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  padding: 1px 3px;
  text-transform: uppercase;
}

.win-icon:hover .win-icon-label {
  background: #000080;
  color: #ffffff;
}

/* =========================================
   COLLECTION PAGES (Zines, Cyberdecks, etc)
   ========================================= */

.zine-page {
  padding-top: 100px;
}

.content-header {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.header-box {
  background: var(--black);
  padding: 2.5rem;
  border: 2px solid var(--purple-bright);
  box-shadow: 10px 10px 0px var(--purple-bright);
  max-width: 800px;
  text-align: center;
}

.collection-desc {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: var(--white);
  line-height: 1.6;
}

.collection-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.zine-section {
  margin-bottom: 5rem;
}

.zine-subhead {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid var(--purple-bright);
}

.zine-subhead-yellow {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid var(--purple-bright);
}

/* Coming Soon Construction Area */
.construction-zone {
  border: 2px dashed var(--purple-bright);
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(196, 77, 255, 0.05);
}

.hovering-emoji {
  display: inline-block;
  font-size: 4rem;
  margin-bottom: 1rem;
  /* Reusing the orbit animation from your smile.gif */
  animation: orbit 4s linear infinite; 
}

/* Resource Cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  border: 1px solid var(--purple-bright);
  padding: 1.5rem;
  background: var(--black);
  text-align: center;
  font-family: var(--font-mono);
  transition: all 0.2s;
}

.resource-card:hover {
  background: var(--purple);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0px var(--yellow);
  color: var(--white);
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.placeholder-img, .placeholder-vid {
  background: #111;
  border: 1px solid #333;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.collection-footer {
  text-align: center;
  padding: 6rem 2rem;
}

#zine-faq {
  padding: 40px 20px;
  background-color: #111;
  font-family: var(--font-mono);
}

.faq-header {
  text-transform: uppercase;
  background: black;
  color: white;
  display: inline-block;
  padding: 5px 15px;
  transform: rotate(-2deg);
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.faq-item {
  background: #000;
  border: 2px solid #000;
  padding: 20px;
  max-width: 400px;
  box-shadow: 5px 5px 0px #000; /* Flat "pop" shadow */
}

.faq-item h3 {
  margin-top: 0;
  text-decoration: underline wavy #ff00ff; /* Neon pink wavy underline */
}

.tilt-left {
  transform: rotate(-1.5deg);
}

.tilt-right {
  transform: rotate(1.5deg);
}

.faq-item:hover {
  transform: rotate(0deg) scale(1.02);
  transition: 0.3s ease;
  z-index: 10;
}
