.custom-cursor {
      position: fixed;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease;
    }
    .progress-bar {
      position: fixed;
      top: 0;
      right: 0;
      height: 4px;
      background: #8b0000;
      z-index: 100;
      width: 0%;
      transition: width 0.1s ease-out;
    }
    .glass-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.03);
    }
    .inner-glow-border {
      position: relative;
    }
    .inner-glow-border::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(to bottom left, rgba(139,0,0,0.1), transparent, rgba(139,0,0,0.05));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    .brand-text {
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .reveal-item {
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }