@font-face {
  font-family: 'Inter';
  src: url('/theme/gs_theme/fonts/Inter-Regular.woff2') format('woff2'),
       url('/theme/gs_theme/fonts/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/theme/gs_theme/fonts/Inter-Medium.woff2') format('woff2'),
       url('/theme/gs_theme/fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/theme/gs_theme/fonts/Inter-Bold.woff2') format('woff2'),
       url('/theme/gs_theme/fonts/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
      --accent: #ef4444;
      --bg: #0f172a;
    }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--bg);
      background-color: #f8fafc;
    }
    .btn-accent {
      background-color: var(--accent);
      color: white;
      border: none;
      transition: all 0.3s ease;
    }
    .btn-accent:hover {
      background-color: #dc2626;
      box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
      transform: translateY(-2px);
      color: white;
    }
    .card-hover {
      transition: transform 0.35s cubic-bezier(.2, .9, .3, 1), box-shadow 0.35s;
    }
    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    }
    .form-message {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: white;
      border: 1px solid #e6edf3;
      padding: 1.5rem;
      border-radius: 0.5rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      z-index: 100;
      text-align: center;
    }
    .form-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 99;
    }
    /* Matrix */
    #matrix-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      opacity: 0.1;
    }