    :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: 860px;
      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;
    }

    .tip-hero {
      background: var(--navy);
      padding: 130px 0 64px;
      position: relative;
      overflow: hidden;
    }

    .tip-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 60% at 60% 50%, rgba(13, 115, 119, 0.15), transparent), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, 0.1), transparent);
    }

    .tip-hero-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 a:hover {
      color: var(--teal-light);
    }

    .breadcrumb span {
      color: rgba(255, 255, 255, 0.25);
    }

    .tip-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(13, 115, 119, 0.15);
      border: 1px solid rgba(13, 115, 119, 0.35);
      color: #5eead4;
      padding: 5px 14px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .tip-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .tip-meta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .meta-item {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tip-body {
      padding: 64px 0;
    }

    .tip-body p {
      color: #3a4a5c;
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .tip-body h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      color: var(--navy);
      margin: 40px 0 16px;
      line-height: 1.3;
    }

    .tip-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--navy);
      margin: 28px 0 12px;
    }

    .tip-body ul,
    .tip-body ol {
      padding-left: 24px;
      margin-bottom: 20px;
    }

    .tip-body li {
      color: #3a4a5c;
      line-height: 1.8;
      margin-bottom: 8px;
    }

    .tip-body strong {
      color: var(--navy);
    }

    .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;
    }

    .highlight-box p {
      color: var(--text) !important;
      font-size: 0.95rem !important;
    }

    .warning-box {
      background: rgba(220, 38, 38, 0.05);
      border: 1px solid rgba(220, 38, 38, 0.2);
      border-left: 4px solid #ef4444;
      border-radius: 12px;
      padding: 24px 28px;
      margin: 32px 0;
    }

    .warning-box h4 {
      color: #dc2626;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .warning-box p {
      color: #3a4a5c !important;
      font-size: 0.95rem !important;
    }

    .rice-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 32px 0;
    }

    .compare-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .compare-card.bad {
      border-top: 4px solid #ef4444;
    }

    .compare-card.good {
      border-top: 4px solid var(--teal);
    }

    .compare-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 3px 10px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .compare-card.bad .compare-label {
      background: rgba(220, 38, 38, 0.08);
      color: #dc2626;
    }

    .compare-card.good .compare-label {
      background: rgba(13, 115, 119, 0.1);
      color: var(--teal);
    }

    .compare-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .compare-card ul {
      padding-left: 18px;
      margin: 0;
    }

    .compare-card li {
      font-size: 0.88rem;
      color: #3a4a5c;
      line-height: 1.7;
      margin-bottom: 6px;
    }

    .plate-visual {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      margin: 32px 0;
    }

    .plate-visual h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 24px;
      text-align: center;
    }

    .plate-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .plate-section {
      background: var(--cream);
      border-radius: 14px;
      padding: 18px 14px;
      text-align: center;
      border: 1px solid var(--border);
    }

    .plate-icon {
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .plate-pct {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--teal);
      margin-bottom: 4px;
    }

    .plate-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .plate-desc {
      font-size: 0.75rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .gi-table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      font-size: 0.9rem;
    }

    .gi-table th {
      background: var(--navy);
      color: var(--white);
      padding: 12px 16px;
      text-align: left;
      font-weight: 600;
      font-size: 0.82rem;
    }

    .gi-table td {
      padding: 11px 16px;
      border-bottom: 1px solid var(--border);
      color: #3a4a5c;
    }

    .gi-table tr:hover td {
      background: rgba(13, 115, 119, 0.04);
    }

    .gi-badge {
      display: inline-block;
      padding: 2px 10px;
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 700;
    }

    .gi-low {
      background: rgba(13, 115, 119, 0.1);
      color: var(--teal);
    }

    .gi-med {
      background: rgba(245, 158, 11, 0.1);
      color: #b45309;
    }

    .gi-high {
      background: rgba(220, 38, 38, 0.1);
      color: #dc2626;
    }

    .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-primary:hover {
      transform: translateY(-2px);
    }

    .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;
    }

    .disclaimer {
      background: rgba(107, 122, 141, 0.08);
      border: 1px solid rgba(107, 122, 141, 0.15);
      border-radius: 12px;
      padding: 20px 24px;
      margin: 32px 0;
    }

    .disclaimer p {
      font-size: 0.82rem !important;
      color: var(--muted) !important;
      line-height: 1.6;
      margin-bottom: 0 !important;
    }

    .related-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
    }

    .rel-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s;
      display: block;
    }

    .rel-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    }

    .rel-cat {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--teal);
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }

    .rel-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.92rem;
      color: var(--navy);
      font-weight: 700;
      line-height: 1.4;
    }

    .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;
      }

      .rice-compare,
      .related-grid {
        grid-template-columns: 1fr;
      }

      .plate-grid {
        grid-template-columns: 1fr;
      }
    }