  body {
      margin: 0;
      font-family: 'Cinzel', serif;
      background: #111;
      color: #eee;
    }
    header {
      background: #1a1a1a;
      color: #c0392b;
      padding: 2rem;
      text-align: center;
      letter-spacing: 3px;
      text-shadow: 2px 2px #000;
    }
    nav {
      background: #222;
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 1rem;
    }
    nav a {
      color: #eee;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: #c0392b;
    }
    .hero {
      background: linear-gradient(135deg, #2c3e50, #000);
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      color: #c0392b;
      text-shadow: 4px 4px #000;
      border: 2px solid #c0392b;
      padding: 1rem;
      background: rgba(0,0,0,0.6);
    }
    main {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      padding: 2rem;
    }
    .content {
      background: #1a1a1a;
      padding: 2rem;
      border-left: 5px solid #c0392b;
    }
    .sidebar {
      background: #222;
      padding: 2rem;
      border: 2px dashed #c0392b;
      font-style: italic;
    }
    footer {
      background: #000;
      color: #666;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }
