@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Roboto:wght@300;400&display=swap');

    :root {
      --text-light: #ccc;
      --text-dark: #666;
      --red: #ff4444;
      --dark-bg: #121212;
      --light-text: #f1f1f1;
      --sidebar: #1f1f1f;
      --border: #2a2a2a;
      --accent: #ff5757;
      --card-bg: #1f1f1f;
      --radius: 0.75rem;
      --shadow-glow: 0 0 8px var(--red-glow);
      --shadow-subtle: 0 2px 10px rgba(255,0,0,0.4);
      --container-max-width: 1200px;
      --transition-fast: 0.3s ease-in-out;
      --font-headline: 'Creepster', cursive;
      --font-body: 'Roboto', sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--dark-bg);
      color: var(--light-text);
      line-height: 1.5;
      min-height: 100vh;
      padding-top: 80px;
    }

    a {
      color: var(--red);
      text-decoration: none;
      transition: color var(--transition-fast), text-shadow var(--transition-fast);
    }

    a:hover, a:focus {
      color: var(--red-glow);
      text-shadow: 0 0 6px var(--red-glow);
      outline: none;
    }

    header {
      position: fixed;
      top: 0;
      left: 0; 
      background-color: var(--dark-bg);
      box-shadow: var(--shadow-subtle);
      z-index: 999;
      width: 100%;
}

    .nav-container {
      max-width: var(--container-max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo img {
      height: 48px;
    }

    .logo span {
      font-family: var(--font-headline);
      font-size: 2rem;
      color: var(--red);
      text-shadow: 0 0 10px var(--red-glow);
      user-select: none;
    }

    nav {
      display: flex;
      gap: 1.25rem;
    }

    nav a {
      font-size: 1rem;
      padding: 0.25rem 0.75rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      color: var(--text-light);
    }

    nav a:hover,
    nav a:focus {
      border-color: var(--red);
      box-shadow: var(--shadow-glow);
      color: var(--red-glow);
    }

    nav a[aria-current="page"] {
      border-color: var(--red-glow);
      box-shadow: 0 0 12px var(--red-glow);
      color: var(--red-glow);
      font-weight: 700;
    }

    .cta-button {
      background-color: var(--red);
      color: var(--bg);
      font-weight: 700;
      font-family: var(--font-headline);
      font-size: 1.125rem;
      padding: 0.75rem 2rem;
      border-radius: var(--radius);
      box-shadow: 0 0 8px var(--red-glow);
      transition: all var(--transition-fast);
      cursor: pointer;
    }

    .cta-button:hover {
      background-color: var(--red-glow);
      box-shadow: 0 0 16px var(--red-glow);
      transform: scale(1.1);
    }

    main {
      max-width: var(--container-max-width);
      margin: 3rem auto 5rem;
      padding: 0 1rem;
    }

    .hero {
      text-align: center;
      padding-bottom: 4rem;
    }

    .hero h1 {
      font-family: var(--font-headline);
      font-size: 4rem;
      color: var(--red);
      text-shadow: 0 0 12px var(--red-glow);
    }

    .hero p {
      font-size: 1.5rem;
      max-width: 600px;
      margin: 0 auto 2.5rem;
      font-style: italic;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background: var(--card-bg);
      padding: 2rem 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-subtle);
    }

    .card:hover {
      box-shadow: 0 0 20px var(--red-glow);
    }

    .card h3 {
      font-family: var(--font-headline);
      color: var(--red);
      margin-bottom: 1rem;
      text-shadow: 0 0 8px var(--red-glow);
    }

    footer {
      background-color: var(--bg-alt);
      padding: 2rem 1.5rem;
      text-align: center;
      font-size: 0.9rem;
      color: var(--text-dark);
      border-top: 1px solid #330000;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    footer img {
      height: 40px;
      margin-bottom: 0.5rem;
    }

    footer a {
      color: var(--red);
      text-decoration: underline;
    }
    @media (max-width: 600px) {
      .hero h1 {
        font-size: 2.5rem;
      }
    }
      .hero p {
        font-size: 1.125rem;
      }

      nav {
        gap: 1rem;
        font-size: 0.9rem;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }
      html {
        scroll-behavior: smooth;
      }
