
    :root {
      --navy: #0a1628;
      --teal: #0d7377;
      --teal-light: #14a5ab;
      --gold: #c9a84c;
      --cream: #fdf8f2;
      --white: #ffffff;
      --text: #1a2332;
      --muted: #6b7a8d;
      --border: rgba(13, 115, 119, 0.15);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--cream);
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 22, 40, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 70px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
    }

    .logo-title {
      font-size: 0.7rem;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    nav {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    nav a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 500;
      transition: all 0.2s;
    }

    nav a:hover,
    nav a.active {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-book {
      background: linear-gradient(135deg, var(--teal), var(--teal-light)) !important;
      color: var(--white) !important;
      padding: 10px 20px !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      z-index: 2000;
      transition: width 0.1s;
    }

    .article-hero {
      background: var(--navy);
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .article-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(13, 115, 119, 0.15), transparent);
    }

    .ah-inner {
      position: relative;
    }

    .breadcrumb {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 24px;
      font-size: 0.82rem;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
    }

    .breadcrumb span {
      color: rgba(255, 255, 255, 0.25);
    }

    .article-tag {
      display: inline-block;
      background: rgba(220, 38, 38, 0.15);
      color: #f87171;
      padding: 5px 14px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      border: 1px solid rgba(220, 38, 38, 0.3);
      margin-bottom: 20px;
    }

    .article-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .article-meta {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .meta-item {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .article-body {
      padding: 64px 0;
    }

    .article-body p {
      color: #3a4a5c;
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .article-body h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      color: var(--navy);
      margin: 48px 0 16px;
      line-height: 1.3;
    }

    .article-body strong {
      color: var(--navy);
    }

    .myth-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      margin: 32px 0;
      position: relative;
      overflow: hidden;
    }

    .myth-card::before {
      content: 'MYTH';
      position: absolute;
      top: 16px;
      right: 20px;
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(239, 68, 68, 0.07);
      line-height: 1;
    }

    .myth-label {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .myth-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(239, 68, 68, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #dc2626;
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .myth-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: #dc2626;
      font-weight: 700;
    }

    .myth-claim {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      font-style: italic;
      margin-bottom: 14px;
      padding: 12px 16px;
      background: rgba(239, 68, 68, 0.05);
      border-left: 3px solid #ef4444;
      border-radius: 0 8px 8px 0;
    }

    .reality-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #16a34a;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .myth-reality {
      font-size: 0.95rem;
      color: #3a4a5c;
      line-height: 1.8;
    }

    .highlight-box {
      background: rgba(13, 115, 119, 0.07);
      border: 1px solid rgba(13, 115, 119, 0.2);
      border-left: 4px solid var(--teal);
      border-radius: 12px;
      padding: 24px 28px;
      margin: 32px 0;
    }

    .highlight-box h4 {
      font-family: 'Playfair Display', serif;
      color: var(--teal);
      margin-bottom: 10px;
    }

    .cta-box {
      background: var(--navy);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      margin: 40px 0;
    }

    .cta-box h3 {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    .cta-box p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.92rem;
      margin-bottom: 24px;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      color: var(--white);
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }

    .btn-wa {
      background: #25D366;
      color: var(--white);
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      animation: float 3s ease-in-out infinite;
    }

    .wa-float::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px solid #25D366;
      animation: wa-ripple 2s ease-out infinite;
    }

    footer {
      background: #060e1a;
      color: rgba(255, 255, 255, 0.6);
      padding: 40px 0 24px;
      text-align: center;
      font-size: 0.85rem;
    }

    footer a {
      color: var(--teal-light);
      text-decoration: none;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    @keyframes wa-ripple {
      0% {
        opacity: 0.6;
        transform: scale(1);
      }

      100% {
        opacity: 0;
        transform: scale(1.6);
      }
    }

    @media(max-width:600px) {
      nav {
        display: none;
      }
    }