* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #d9d0bf;
      color: #111;
      line-height: 1.5;
    }

    header {
      background: #e0c84f;
      border-bottom: 5px solid #111;
      padding: 20px;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      max-width: 1100px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 2rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      transform: rotate(-1deg);
    }

    nav {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: #111;
      background: white;
      border: 3px solid #111;
      padding: 10px 14px;
      font-weight: bold;
      transition: 0.15s;
    }

    nav a:hover {
      background: #111;
      color: white;
      transform: translateY(-2px);
    }
	a {
      text-decoration: none;
      color: #111;
      background: white;
      border: 3px solid #111;
      padding: 10px 14px;
      font-weight: bold;
      transition: 0.15s;
    }
	a:hover {
      background: #111;
      color: white;
      transform: translateY(-2px);
    }

    .hero {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .hero-box {
      background: white;
      border: 5px solid #111;
      padding: 40px;
      box-shadow: 10px 10px 0 #111;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
    }

    .section-title {
      max-width: 1100px;
      margin: 40px auto 20px;
      padding: 0 20px;
      font-size: 2rem;
      text-transform: uppercase;
      font-weight: 900;
    }

    .comic-grid {
      max-width: 1100px;
      margin: auto;
      padding: 0 20px 50px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .comic-card {
      background: white;
      border: 5px solid #111;
      overflow: hidden;
      transition: 0.15s;
    }

    .comic-card:hover {
      transform: rotate(-1deg) scale(1.01);
    }

    .comic-card img {
      width: 100%;
      display: block;
      background: #cfcfcf;
      aspect-ratio: 9/16;
      object-fit: cover;
    }

    .comic-info {
      padding: 16px;
      border-top: 5px solid #111;
    }

    .comic-info h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .comic-info p {
      font-size: 0.95rem;
    }
	
	.blur-card{
  filter: blur(6px);
  opacity: 0.7;
  transform: scale(0.98);
}

    .characters {
      max-width: 1100px;
      margin: auto;
      padding: 0 20px 80px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .character-card {
      background: white;
      border: 5px solid #111;
      padding: 25px;
      position: relative;
    }

    .character-card h2 {
      background: #e0c84f;
      display: inline-block;
      padding: 8px 12px;
      border: 3px solid #111;
      margin-bottom: 20px;
      text-transform: uppercase;
      transform: rotate(-1deg);
    }

    .character-image {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      border: 4px solid #111;
      margin-bottom: 20px;
      background: #cfcfcf;
    }

    .character-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 1rem;
      font-weight: bold;
    }

    .character-card li::before {
      content: '⚒️ ';
    }

    footer {
      background: #111;
      color: white;
      padding: 30px 20px;
      text-align: center;
      font-weight: bold;
    }

    .sticker {
      position: absolute;
      top: -15px;
      right: -10px;
      background: #111;
      color: white;
      padding: 8px 12px;
      border: 3px solid white;
      transform: rotate(8deg);
      font-size: 0.8rem;
    }

    @media (max-width: 700px) {
      .hero h1 {
        font-size: 2rem;
      }

      .hero-box {
        padding: 25px;
      }

      nav {
        justify-content: center;
      }

      .logo {
        width: 100%;
        text-align: center;
      }
    }