
  /* --- IMPORT ROYAL FONT --- */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

  /* --- CORE STYLES --- */
  #noble-header-wrapper {
    background-color: #000000 !important;
    color: #e5e5e5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 100px 20px; /* Generous padding for a grand feel */
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #noble-header-wrapper * { box-sizing: border-box; }

  /* --- HERO CONTAINER --- */
  .noble-hero {
    text-align: center;
    max-width: 1000px;
    width: 100%;
  }

  /* The Royal Title */
  .noble-hero h1 {
    font-family: 'Playfair Display', serif; /* Serif font for Royalty */
    color: #ffffff;
    font-size: 4.5rem; /* Large and imposing */
    font-weight: 700;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
    line-height: 1.1;
    
    /* Gold to Purple Gradient Text */
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 40%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Subtle Shadow for depth */
    text-shadow: 0px 4px 15px rgba(0,0,0,0.8);
  }

  /* The Slogan */
  .noble-hero p {
    font-size: 1.6rem;
    color: #a3a3a3;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 300;
    font-style: italic;
    
    /* The Top/Bottom Border Lines */
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 30px 0;
    
    letter-spacing: 0.5px;
    line-height: 1.6;
  }

  /* --- MOBILE ADJUSTMENTS --- */
  @media (max-width: 768px) {
    #noble-header-wrapper { padding: 60px 20px; }
    .noble-hero h1 { font-size: 2.8rem; }
    .noble-hero p { font-size: 1.2rem; padding: 20px 0; }
  }
