
  /* --- CORE STYLES --- */
  #noble-ship-wrapper {
    background-color: #000000 !important;
    color: #e5e5e5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.8;
    padding: 80px 20px;
    box-sizing: border-box;
    width: 100%;
    font-size: 18px;
  }
  #noble-ship-wrapper * { box-sizing: border-box; }

  /* --- TYPOGRAPHY --- */
  #noble-ship-wrapper h1 { 
    color: #ffffff;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 3.5rem;
    margin-bottom: 30px; 
    line-height: 1.2; 
    text-align: center; 
  }
  
  #noble-ship-wrapper h2 {
    color: #ffffff;
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }

  #noble-ship-wrapper h3 { 
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 15px; 
    color: #ffffff; 
  }
  
  #noble-ship-wrapper h4 {
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
    font-weight: bold;
  }
  
  #noble-ship-wrapper p { 
    margin-bottom: 25px; 
    color: #a3a3a3; 
    font-size: 1.2rem;
  }
  
  #noble-ship-wrapper strong { color: #ffffff; font-weight: 600; }
  #noble-ship-wrapper a { color: #c084fc; text-decoration: underline; }

  /* Gradient Text Effect */
  .noble-gradient-text {
    background: linear-gradient(90deg, #c084fc, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* --- LAYOUT --- */
  .noble-container { max-width: 1000px; margin: 0 auto; }
  
  /* --- INFO BOXES (SOLID BLACK) --- */
  .noble-info-box {
    background: #000000;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
  }
  
  /* Special Highlight Box */
  .noble-highlight-box {
    background: #000000;
    border: 1px solid #059669;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
  }

  /* --- DATA TABLE --- */
  .noble-ship-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .noble-ship-table th {
    text-align: left;
    background: #1f1f1f;
    color: #fff;
    padding: 18px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .noble-ship-table td {
    border-bottom: 1px solid #333;
    padding: 20px;
    color: #ccc;
    font-size: 1.1rem;
  }
  .noble-ship-table tr:last-child td { border-bottom: none; }

  /* --- LIST STYLES --- */
  .noble-list { list-style: none; padding: 0; margin: 0; }
  .noble-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #d4d4d4;
    font-size: 1.2rem;
  }
  .noble-list li::before {
    content: "•";
    color: #ec4899; 
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1.2;
  }

  /* --- COUNTRY GRID --- */
  .noble-country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #a3a3a3;
  }
  .noble-country-grid div {
    padding: 5px 0;
  }

  /* --- MOBILE RESPONSIVE --- */
  @media (max-width: 768px) {
    #noble-ship-wrapper { padding: 40px 20px; }
    #noble-ship-wrapper h1 { font-size: 2.5rem; }
    #noble-ship-wrapper h2 { font-size: 2rem; }
    .noble-ship-table th, .noble-ship-table td { padding: 15px; font-size: 1rem; display: block; width: 100%; }
    .noble-ship-table th { display: none; } 
    .noble-ship-table tr { border-bottom: 2px solid #333; display: block; margin-bottom: 20px; }
    .noble-ship-table td { border-bottom: none; padding: 10px 0; }
    .noble-ship-table td::before { content: attr(data-label) ": "; font-weight: bold; color: #fff; }
    .noble-country-grid { grid-template-columns: repeat(2, 1fr); font-size: 0.9rem; }
  }
