/* Global reset & body styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #1f1f2b;
    color: #eeeeee;
    font-family: 'Orbitron', Arial, sans-serif;
    overflow-x: hidden;
  }
  
  /* ############### NAVBAR ############### */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #2b2b3c;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .navbar-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0f0f0;
    text-transform: uppercase;
    position: relative;
  }
  
  .glitch {
    position: relative;
    color: white;
  }
  
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    text-shadow: -2px 0 magenta;
    top: 0;
    color: white;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
  }
  
  .glitch::before {
    left: 2px;
    text-shadow: -2px 0 magenta;
    animation: glitch-anim 1s infinite linear alternate-reverse;
  }
  
  .glitch::after {
    left: -2px;
    text-shadow: -2px 0 cyan;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
  }
  
  @keyframes glitch-anim {
    0% {
      clip: rect(44px, 9999px, 62px, 0);
      transform: translate(0);
    }
    5% {
      clip: rect(10px, 9999px, 30px, 0);
      transform: translate(-5px, 5px) skew(5deg);
    }
    10% {
      clip: rect(86px, 9999px, 40px, 0);
      transform: translate(5px, -5px) skew(-5deg);
    }
    15% {
      clip: rect(20px, 9999px, 80px, 0);
      transform: translate(-3px, 3px) skew(2deg);
    }
    20% {
      clip: rect(21px, 9999px, 24px, 0);
      transform: translate(2px, -2px) skew(-2deg);
    }
    25% {
      clip: rect(54px, 9999px, 72px, 0);
      transform: translate(-1px, 1px) skew(1deg);
    }
    30% {
      clip: rect(94px, 9999px, 38px, 0);
      transform: translate(4px, -4px) skew(-3deg);
    }
    35% {
      clip: rect(32px, 9999px, 60px, 0);
      transform: translate(-4px, 4px) skew(4deg);
    }
    40% {
      clip: rect(42px, 9999px, 68px, 0);
      transform: translate(0);
    }
    /* Add more keyframes as desired for more erratic behavior */
    100% {
      clip: rect(42px, 9999px, 64px, 0);
      transform: translate(0);
    }
  }
  
  @keyframes glitch-anim2 {
    0% {
      clip: rect(48px, 9999px, 60px, 0);
      transform: translate(0);
    }
    5% {
      clip: rect(10px, 9999px, 80px, 0);
      transform: translate(3px, -3px) skew(-3deg);
    }
    10% {
      clip: rect(36px, 9999px, 54px, 0);
      transform: translate(-3px, 3px) skew(2deg);
    }
    15% {
      clip: rect(20px, 9999px, 72px, 0);
      transform: translate(4px, -2px) skew(-1deg);
    }
    20% {
      clip: rect(68px, 9999px, 84px, 0);
      transform: translate(-2px, 2px) skew(3deg);
    }
    25% {
      clip: rect(70px, 9999px, 54px, 0);
      transform: translate(2px, -2px) skew(-2deg);
    }
    30% {
      clip: rect(24px, 9999px, 28px, 0);
      transform: translate(0);
    }
    35% {
      clip: rect(64px, 9999px, 80px, 0);
      transform: translate(-5px, 5px) skew(5deg);
    }
    40% {
      clip: rect(60px, 9999px, 44px, 0);
      transform: translate(5px, -5px) skew(-5deg);
    }
    45% {
      clip: rect(24px, 9999px, 82px, 0);
      transform: translate(-1px, 1px) skew(1deg);
    }
    50% {
      clip: rect(84px, 9999px, 70px, 0);
      transform: translate(0);
    }
    /* Continue adding keyframes for increased erratic behavior */
    100% {
      clip: rect(84px, 9999px, 70px, 0);
      transform: translate(0);
    }
  }
  
  
  .navbar-links {
    display: flex;
    gap: 1rem;
  }
  
  .btn-glow {
    background-color: #3d3d51;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-glow:hover {
    box-shadow: 0 0 10px #f21eff, 0 0 20px #f21eff, 0 0 30px #f21eff;
  }
  
  /* ############### HERO SECTION ############### */
  .hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1518991791750-7827962a8e90?fit=crop&w=1920&q=80')
      center center/cover no-repeat;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: relative;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  
  /* Buttons in hero */
  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero {
    background: #e91e63;
    border: none;
    color: white;
    padding: 0.8rem 1.4rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
  }

  .no-decoration {
    text-decoration: none;
    color: white;
  }
  
  .btn-hero:hover {
    background: #f50057;
  }
  
  /* ############### HIDDEN MESSAGE ############### */
  .hidden-msg {
    margin-top: 1rem;
    background: #29293f;
    padding: 1rem;
    border-radius: 5px;
    display: none;
    max-width: 300px;
    text-align: left;
  }
  
  /* ############### ABOUT SECTION ############### */
  .about-section {
    padding: 3rem 2rem;
    text-align: center;
    background: #2e2e40;
  }
  
  .dreck-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .dreck-item {
    background: #45465c;
    padding: 1rem;
    border-radius: 5px;
    flex: 1 1 120px;
    text-align: center;
    font-style: italic;
  }
  
  /* ############### FAQ SECTION ############### */
  .faq-section {
    padding: 3rem 2rem;
    background: #1f1f2b;
    text-align: center;
  }
  
  .faq-section .section-title {
    margin-bottom: 2rem;
  }
  
  .faq {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faq-item {
    background: #2b2b3c;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-height: 60px;
  }
  
  .faq-item.open {
    max-height: 500px; /* Adjust if necessary */
  }
  
  .faq-question {
    background: #373750;
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
    padding: 0.8rem;
    text-align: left;
    border: none;
    display: block;
    cursor: pointer;
    outline: none;
    transition: background 0.2s ease;
  }
  
  .faq-question:hover {
    background: #454565;
  }
  
  .faq-answer {
    padding: 1rem;
    color: #eeeeee;
    border-top: 1px solid #444;
    font-size: 0.95rem;
    display: none;
  }
  
  .faq-item.open .faq-answer {
    display: block;
  }
  
  /* ############### FOOTER ############### */
  .footer {
    background: #2b2b3c;
    text-align: center;
    padding: 1.5rem 0;
  }
  
  .footer-text {
    color: #b0b0b0;
    font-size: 0.9rem;
  }
  
  .love {
    color: #e91e63;
  }
  
  /* ############### ANIMATIONS ############### */
  /* Retaining existing animations */
  @keyframes bounce-in-top {
    0% { transform: translateY(-500px); opacity: 0; }
    38% { transform: translateY(0); opacity: 1; }
    55% { transform: translateY(-65px); }
    72% { transform: translateY(0); }
    81% { transform: translateY(-28px); }
    90% { transform: translateY(0); }
    95% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }
  
  .bounce-in-top { animation: bounce-in-top 2s both; }
  
  @keyframes tracking-in-expand {
    0% { letter-spacing: -0.5em; opacity: 0; }
    40% { opacity: 0.6; }
    100% { opacity: 1; letter-spacing: normal; }
  }
  
  .tracking-in-expand { animation: tracking-in-expand 1.2s both; }
  
  @keyframes slide-in-left {
    0% { transform: translateX(-100vw); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  
  .slide-in-left { animation: slide-in-left 1s ease-out both; }
  
  @keyframes fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .fade-in { animation: fade-in 1.5s ease forwards; }
  
  @keyframes flip-in-hor-top {
    0% { transform: rotateX(80deg); opacity: 0; }
    100% { transform: rotateX(0deg); opacity: 1; }
  }
  
  .flip-in-hor-top { animation: flip-in-hor-top 1s forwards; }
  
  /* Media queries for responsiveness */
  @media (max-width: 768px) {
    .navbar {
      flex-wrap: wrap;
      justify-content: center;
    }
    .navbar-links {
      margin-top: 1rem;
    }
    .hero-title {
      font-size: 2rem;
    }
    .dreck-gallery {
      flex-direction: column;
      align-items: center;
    }
  }
  