@layer base {
  .hero {
    background: linear-gradient(135deg, var(--info) 0%, var(--secondary) 100%);
    color: white;
    padding: var(--spacing-16) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }

  .heroContent {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
    position: relative;
    z-index: 1;
  }

  .title {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-4) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .metadata {
    display: flex;
    justify-content: center;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    flex-wrap: wrap;
  }

  .metadataItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-1);
  }

  .metadataLabel {
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .metadataValue {
    font-family: var(--font-family-base);
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
  }

  .notice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
  }

  .notice p {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .hero {
      padding: var(--spacing-12) 0;
    }

    .title {
      font-size: 2rem;
    }

    .metadata {
      flex-direction: column;
      gap: var(--spacing-4);
    }

    .metadataItem {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

    .notice {
      padding: var(--spacing-4);
    }

    .notice p {
      font-size: 0.9375rem;
    }
  }

  /* Print styles */
  @media print {
    .hero {
      background: white;
      color: black;
      padding: var(--spacing-8) 0;
    }

    .hero::before {
      display: none;
    }

    .title {
      color: black;
      text-shadow: none;
    }

    .subtitle {
      color: black;
    }

    .metadataValue {
      background: #f0f0f0;
      color: black;
    }

    .notice {
      background: #f9f9f9;
      border-color: #ddd;
      color: black;
    }
  }
}