

    :root {
      --purple: #9b5de5;
      --cyan: #00f5d4;
      --card-bg: rgba(12, 10, 20, 0.7);
      --card-border: rgba(155, 93, 229, 0.3);
    }

    html, body {
      min-height: 100%;
      background: #080610;
      color: #d4c8f0;
      font-family: 'Lucidia Console', monospace;
      overflow-x: hidden;
    }

    /* ── Canvas & Overlays ── */
    #chromatic-canvas {
      position: fixed;

      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    body::before {
      content: '';
      position: fixed;
      background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
      opacity: 0.05;
      pointer-events: none;
      z-index: 1;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(to bottom, transparent 0px, transparent 2px, rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 4px);
      pointer-events: none;
      z-index: 2;
    }

    /* ── Layout ── */
    main {
      position: relative;
      z-index: 10;
      max-width: 800px;
      margin: 0 auto;
      padding: 4rem 1.5rem 6rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    /* ── Typography & Glitch ── */
    .site-title {
      font-family: 'VT323', monospace;
      line-height: 1.2; 
      padding-bottom: 0.15em;
      font-size: clamp(3rem, 8vw, 5.5rem);
      color: transparent;
      background: linear-gradient(135deg, #e37d94, #e9a099, #f4c89c);
      background-clip: text;
      position: relative;
      display: inline-block;
    }

    .site-title::before, .site-title::after {
      content: attr(data-text);
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      background: inherit;
      background-clip: text;
      color: transparent;
    }

    .site-title::before { animation: glitch-r 3.5s infinite; clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    .site-title::after { animation: glitch-b 3.5s infinite; clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }

    @keyframes glitch-r {
      0%, 90%, 100% { transform: translate(0,0); opacity: 0; }
      92% { transform: translate(-3px, 1px); opacity: 0.8; filter: hue-rotate(180deg); }
      94% { transform: translate(3px, -1px); opacity: 0.8; }
    }
    @keyframes glitch-b {
      0%, 90%, 100% { transform: translate(0,0); opacity: 0; }
      91% { transform: translate(3px, -2px); opacity: 0.8; filter: hue-rotate(-90deg); }
      93% { transform: translate(-2px, 1px); opacity: 0.8; }
    }

    .tagline {
      font-family: 'VT323', monospace;
      font-size: 1.2rem;
      color: var(--purple);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      text-align: center
    }

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

    .card:hover {
      transform: translateY(-4px);
      box-shadow:
    0 0 5px rgba(200, 15, 15, 0.8),  /* Bright inner core */
    0 0 20px rgba(15, 100, 229, 0.4), /* Soft outer haze */
    0 0 40px rgba(10, 200, 29, 0.2); /* Huge ambient glow */
    }

    .card-title {
      font-family: 'VT323', monospace;
      font-size: 2rem;
      color: #e8deff;
      margin-bottom: 1rem;
      text-shadow: 0 0 10px rgba(155, 93, 229, 0.4);
    }

    .card-body { font-size: 1rem; line-height: 1.6; }
    .card-body p { margin-bottom: 0.75rem; }
    
  
    .commission-list {
      list-style: none;
      margin-top: 1rem;
      padding-left: 1rem;
    }
    .commission-list li::before {
      content: '► ';
      color: var(--cyan);
      font-size: 0.8rem;
    }
    .commission-list li { margin-bottom: 0.5rem; }

    .social-list { list-style: none; display: flex; gap: 1.5rem; }
    .social-list a {
      color: var(--cyan);
      text-decoration: none;
      font-weight: bold;
      transition: text-shadow 0.2s;
    }
    .social-list a:hover {
  text-shadow: 
    2px 0px 5px rgba(255, 0, 0, 0.8),  /* Red right + blur */
    -2px 0px 5px rgba(0, 255, 0, 0.8), /* Green left + blur */
    0px 0px 12px rgba(0, 0, 255, 0.6); /* Blue center glow */
    }

.blink {
      animation: blink 1s step-end infinite;
      /* The Hard-Drop Chromatic Aberration */
      text-shadow: 
        2px 0px 0px rgba(255, 0, 0, 0.8),  /* Red offset right */
        -2px 0px 0px rgba(0, 255, 0, 0.8), /* Green offset left */
        0px 1px 0px rgba(0, 0, 255, 0.8);  /* Blue offset down */
    }

    @keyframes blink { 
      50% { 
        opacity: 0; 
        text-shadow: none; /* Turns off the shadow when the cursor disappears */
      } 
    }

    footer {
      position: relative;
      z-index: 10;
      text-align: center;
      font-size: 0.8rem;
      color: rgba(155,93,229,0.5);
      padding-bottom: 2rem;
    }
    /* ──  Pricing Tags  ── */
    .price {
      display: inline-block;
      margin-left: 0.5rem;
      padding: 0.1rem 0.5rem;
      border-radius: 4px;
      font-weight: bold;
      background: rgba(255, 255, 255, 0.05);
      text-shadow: 0 0 8px currentColor; /* Adds a neon glow matching the text color */
    }

     /* ── Individual tier colors  ── */
    .price-tier-1 { color: #00f5d4; border: 1px solid rgba(0, 245, 212, 0.3); } /* Neon Cyan */
    .price-tier-2 { color: #f15bb5; border: 1px solid rgba(241, 91, 181, 0.3); } /* Neon Pink */
    .price-tier-3 { color: #fee440; border: 1px solid rgba(254, 228, 64, 0.3); } /* Neon Yellow */
    .price-tier-4 { color: #9b5de5; border: 1px solid rgba(155, 93, 229, 0.3); } /* Neon Purple */

/* ── Gallery Grid ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .gallery-item {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid var(--card-border);
      cursor: pointer;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.05);
      border-color: var(--cyan);
      box-shadow: 0 0 15px rgba(0, 245, 212, 0.4);
    }

    /* ── Lightbox (The Expand Effect) ── */
    #lightbox {
      position: fixed;
      inset: 0;
      background: rgba(8, 6, 16, 0.95);
      z-index: 2000;
      display: none; /* Hidden by default */
      align-items: center;
      justify-content: center;
      cursor: zoom-out;
      backdrop-filter: blur(10px);
    }

    #lightbox img {
      max-width: 90%;
      max-height: 90%;
      border: 2px solid var(--purple);
      box-shadow: 0 0 30px rgba(155, 93, 229, 0.5);
    }
    


    /* The Custom Glitch Cursor */

      /* Hard-Drop Chromatic Aberration */
  /*    .glitchy {
  /*       text-shadow:  
   /*     2px 0px 0px rgba(255, 0, 0, 0.8),  /* Red offset right */
    /*      -2px 0px 0px rgba(0, 255, 0, 0.8), /* Green offset left */
    /*      0px 1px 0px rgba(0, 0, 255, 0.8);  /* Blue offset down */
      }
    }
