/* --- Styles from discover.html --- */
:root {
      --primary: #0f2a1c;
      --primary-light: #1d3f2d;
      --secondary: #d97706;
      --secondary-light: #fef3c7;
      --bg: #fcfcfb;
      --card-bg: #ffffff;
      --text: #1c1917;
      --text-muted: #78716c;
      --border: #e7e5e4;
    }
    
    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Outfit', 'Noto Sans TC', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.8;
      padding: 0;
      margin: 0;
    }

    .subpage-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      padding: 100px 24px 120px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .subpage-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: var(--bg);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .header-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .badge {
      background-color: var(--secondary);
      color: white;
      padding: 6px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85em;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: inline-block;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
    }

    h1 {
      font-size: 2.4rem;
      font-weight: 900;
      margin: 0 0 16px 0;
      line-height: 1.4;
      color: #ffffff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .subtitle {
      font-size: 1.2rem;
      color: #a7f3d0;
      margin: 0;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    main {
      max-width: 900px;
      margin: -50px auto 100px auto;
      padding: 0 24px;
      position: relative;
      z-index: 3;
    }

    .intro-card {
      background: var(--card-bg);
      padding: 48px;
      border-radius: 24px;
      box-shadow: 0 12px 40px rgba(15, 42, 28, 0.06);
      border: 1px solid var(--border);
      margin-bottom: 48px;
    }

    .intro-text {
      font-size: 1.18rem;
      color: var(--text);
      font-weight: 500;
      margin: 0;
      text-align: justify;
    }

    h2 {
      color: var(--primary);
      font-size: 1.7rem;
      font-weight: 800;
      margin: 56px 0 28px 0;
      border-left: 6px solid var(--secondary);
      padding-left: 18px;
      display: flex;
      align-items: center;
    }

    p.body-text {
      font-size: 1.05rem;
      color: var(--text);
      margin: 0 0 24px 0;
      text-align: justify;
    }

    /* 8 Atomic Tags Section */
    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 24px 0 40px 0;
    }

    .tag-definition {
      background: #f5f5f4;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 18px;
      font-size: 0.92rem;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tag-definition strong {
      color: var(--secondary);
      font-size: 1rem;
    }

    /* Multi-tag Intersection Matrix Grid */
    .matrix-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin: 32px 0 48px 0;
    }
    @media (min-width: 576px) {
      .matrix-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (min-width: 992px) {
      .matrix-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    .matrix-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    }

    .matrix-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(15, 42, 28, 0.08);
      border-color: var(--primary-light);
    }

    .matrix-name {
      font-weight: 800;
      color: var(--primary);
      font-size: 1.15rem;
      margin: 0 0 6px 0;
    }

    .matrix-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin: 0 0 16px 0;
      line-height: 1.5;
    }

    .matrix-tags-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .matrix-tag-pill {
      font-size: 0.74rem;
      background: var(--secondary-light);
      color: #78350f;
      border: 1px solid rgba(217,119,6,0.25);
      border-radius: 6px;
      padding: 2px 8px;
      font-weight: 700;
    }

    .card-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      margin: 32px 0;
    }

    @media (min-width: 768px) {
      .card-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .info-card {
      background: var(--card-bg);
      padding: 32px;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
      border: 1px solid var(--border);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(15, 42, 28, 0.09);
      border-color: rgba(15, 42, 28, 0.15);
    }

    .info-card h3 {
      margin: 0 0 14px 0;
      color: var(--primary-light);
      font-size: 1.3rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-card p {
      margin: 0;
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .viewer-section {
      background: var(--card-bg);
      padding: 40px;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(15, 42, 28, 0.05);
      border: 1px solid var(--border);
      margin: 48px 0;
    }

    .selector-container {
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (min-width: 768px) {
      .selector-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .selector-label {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.15rem;
    }

    select {
      font-family: inherit;
      padding: 12px 20px;
      font-size: 0.95rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fafaf9;
      color: var(--text);
      cursor: pointer;
      width: 100%;
      max-width: 550px;
      outline: none;
      transition: all 0.3s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

    select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(15, 42, 28, 0.1);
    }

    .iframe-wrapper {
      position: relative;
      width: 100%;
      height: 650px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: inset 0 2px 10px rgba(0,0,0,0.04);
      background: #fafaf9;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .callout {
      background: var(--secondary-light);
      border-left: 4px solid var(--secondary);
      padding: 28px;
      border-radius: 12px;
      margin: 48px 0;
      box-shadow: 0 4px 15px rgba(217, 119, 6, 0.05);
    }

    .callout-title {
      font-weight: 700;
      color: var(--secondary);
      font-size: 1.1rem;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .callout-content {
      margin: 0;
      font-size: 1rem;
      color: #78350f;
    }

    .footer-badge {
      display: inline-block;
      margin-top: 10px;
      font-size: 0.85em;
      color: var(--secondary);
      font-weight: 700;
      letter-spacing: 1px;
    }

    footer {
      text-align: center;
      padding: 60px 24px;
      color: var(--text-muted);
      font-size: 0.95rem;
      border-top: 1px solid var(--border);
      background: #fafaf9;
      margin-top: 100px;
    }
  
    /* Polaroid Style Photos */
    .polaroid-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 40px 0;
      align-items: center;
    }
    @media (min-width: 768px) {
      .polaroid-container {
        flex-direction: row;
        justify-content: center;
        gap: 36px;
      }
    }
    
    .polaroid-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 12px 24px 12px;
      box-shadow: 0 4px 20px rgba(15, 42, 28, 0.04);
      max-width: 420px;
      width: 100%;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .polaroid-card:hover {
      transform: translateY(-8px) rotate(1deg) !important;
      box-shadow: 0 16px 36px rgba(15, 42, 28, 0.08);
      border-color: var(--secondary) !important;
    }
    
    .polaroid-img-wrapper {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #fafaf9;
      margin-bottom: 12px;
    }
    
    .polaroid-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .polaroid-caption {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0;
      font-weight: 500;
      font-style: italic;
      line-height: 1.4;
    }

  
    
    /* Breadcrumb & Article Navigation */
    .breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.7);
    }
    .breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: var(--secondary);
    }
    .breadcrumb .separator {
      color: rgba(255, 255, 255, 0.4);
      font-weight: 400;
    }
    .breadcrumb .current {
      color: #ffffff;
    }
    .article-navigation {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 64px;
      border-top: 1px solid var(--border);
      padding-top: 40px;
    }
    .nav-card {
      flex: 1;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 24px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .nav-card.prev {
      align-items: flex-start;
      text-align: left;
    }
    .nav-card.next {
      align-items: flex-end;
      text-align: right;
    }
    .nav-card:hover {
      border-color: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(15, 42, 28, 0.04);
    }
    .nav-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .nav-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary);
      transition: color 0.3s;
    }
    .nav-card:hover .nav-title {
      color: var(--secondary);
    }

/* --- Styles from define.html --- */
:root {
      --primary: #0f2a1c;
      --primary-light: #1d3f2d;
      --secondary: #d97706;
      --secondary-light: #fef3c7;
      --bg: #fcfcfb;
      --card-bg: #ffffff;
      --text: #1c1917;
      --text-muted: #78716c;
      --border: #e7e5e4;
    }
    
    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Outfit', 'Noto Sans TC', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.8;
      padding: 0;
      margin: 0;
    }

    .subpage-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      padding: 100px 24px 120px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .subpage-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: var(--bg);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .header-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .badge {
      background-color: var(--secondary);
      color: white;
      padding: 6px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85em;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: inline-block;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
    }

    h1 {
      font-size: 2.4rem;
      font-weight: 900;
      margin: 0 0 16px 0;
      line-height: 1.4;
      color: #ffffff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .subtitle {
      font-size: 1.2rem;
      color: #a7f3d0;
      margin: 0;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    main {
      max-width: 900px;
      margin: -50px auto 100px auto;
      padding: 0 24px;
      position: relative;
      z-index: 3;
    }

    .intro-card {
      background: var(--card-bg);
      padding: 48px;
      border-radius: 24px;
      box-shadow: 0 12px 40px rgba(15, 42, 28, 0.06);
      border: 1px solid var(--border);
      margin-bottom: 48px;
    }

    .intro-text {
      font-size: 1.18rem;
      color: var(--text);
      font-weight: 500;
      margin: 0;
      text-align: justify;
    }

    h2 {
      color: var(--primary);
      font-size: 1.7rem;
      font-weight: 800;
      margin: 56px 0 28px 0;
      border-left: 6px solid var(--secondary);
      padding-left: 18px;
      display: flex;
      align-items: center;
    }

    p.body-text {
      font-size: 1.05rem;
      color: var(--text);
      margin: 0 0 24px 0;
      text-align: justify;
    }

    /* Tab Container Styles */
    .tabs-container {
      margin: 40px 0 60px 0;
    }
    
    .tab-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
      border-bottom: 2px solid var(--border);
      padding-bottom: 16px;
    }
    
    .tab-label {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .tab-btn {
      width: 48px;
      height: 28px;
      border: 2px solid transparent;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      outline: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.95rem;
      font-weight: 900;
      letter-spacing: 0.5px;
    }
    
    .tab-btn[data-team="A"] { background-color: #15803d; }
    .tab-btn[data-team="B"] { background-color: #1d4ed8; }
    .tab-btn[data-team="C"] { background-color: #d97706; }
    .tab-btn[data-team="D"] { background-color: #b91c1c; }

    .tab-btn:hover {
      transform: scale(1.15);
    }

    .tab-btn[data-team="A"].active {
      box-shadow: 0 0 0 2px white, 0 0 0 4px #15803d;
      transform: scale(1.1);
    }
    .tab-btn[data-team="B"].active {
      box-shadow: 0 0 0 2px white, 0 0 0 4px #1d4ed8;
      transform: scale(1.1);
    }
    .tab-btn[data-team="C"].active {
      box-shadow: 0 0 0 2px white, 0 0 0 4px #d97706;
      transform: scale(1.1);
    }
    .tab-btn[data-team="D"].active {
      box-shadow: 0 0 0 2px white, 0 0 0 4px #b91c1c;
      transform: scale(1.1);
    }

    /* Tab Content Switch */
    .tab-content {
      display: none;
      animation: fadeIn 0.4s ease;
    }
    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Custom Tables per Group */
    .team-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.02);
    }
    .team-table th {
      color: white;
      font-weight: 700;
      font-size: 1rem;
      padding: 18px 20px;
      text-align: left;
    }
    
    /* Header Colors matching team brand */
    .team-table[data-team="A"] th { background-color: #15803d; }
    .team-table[data-team="B"] th { background-color: #1d4ed8; }
    .team-table[data-team="C"] th { background-color: #d97706; }
    .team-table[data-team="D"] th { background-color: #b91c1c; }

    .team-table td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }
    
    /* Soft tints on Zebra striping */
    .team-table[data-team="A"] tr:nth-child(even) td { background-color: #f0fdf4; }
    .team-table[data-team="B"] tr:nth-child(even) td { background-color: #eff6ff; }
    .team-table[data-team="C"] tr:nth-child(even) td { background-color: #fffbeb; }
    .team-table[data-team="D"] tr:nth-child(even) td { background-color: #fef2f2; }

    .team-table tr:hover td {
      background-color: #f5f5f4 !important;
    }

    .theme-cell {
      font-weight: 700;
      width: 33%;
      border-right: 1px solid var(--border);
    }
    .team-table[data-team="A"] .theme-cell { color: #15803d; }
    .team-table[data-team="B"] .theme-cell { color: #1d4ed8; }
    .team-table[data-team="C"] .theme-cell { color: #d97706; }
    .team-table[data-team="D"] .theme-cell { color: #b91c1c; }

    .insight-cell {
      color: var(--text);
      line-height: 1.7;
      width: 67%;
      text-align: justify;
    }

    .theme-section {
      margin: 40px 0;
    }

    .theme-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.01);
      transition: all 0.3s ease;
      position: relative;
    }

    .theme-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(15, 42, 28, 0.07);
      border-color: rgba(15, 42, 28, 0.15);
    }

    .theme-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid var(--border);
      padding-bottom: 16px;
      margin-bottom: 24px;
    }

    .theme-title-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .theme-group-label {
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--secondary);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .theme-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--primary);
      margin: 0;
    }

    .theme-meta {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .block-label {
      font-size: 0.9rem;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--primary-light);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      display: inline-block;
      padding: 2px 8px;
      background: #f1f5f1;
      border-radius: 4px;
    }

    .block-content {
      font-size: 1.02rem;
      color: var(--text);
      margin-bottom: 28px;
      text-align: justify;
    }

    .block-content:last-child {
      margin-bottom: 0;
    }

    .hmw-box {
      background: var(--secondary-light);
      border-left: 4px solid var(--secondary);
      padding: 20px 24px;
      border-radius: 0 12px 12px 0;
    }

    .hmw-box .block-label {
      background: #fef3c7;
      color: var(--secondary);
    }

    .hmw-text {
      font-size: 1.1rem;
      font-weight: 700;
      color: #78350f;
      margin: 0;
    }

    .callout {
      background: var(--secondary-light);
      border-left: 4px solid var(--secondary);
      padding: 28px;
      border-radius: 12px;
      margin: 56px 0;
      box-shadow: 0 4px 15px rgba(217, 119, 6, 0.05);
    }

    .callout-title {
      font-weight: 700;
      color: var(--secondary);
      font-size: 1.1rem;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .callout-content {
      margin: 0;
      font-size: 1rem;
      color: #78350f;
    }

    .footer-badge {
      display: inline-block;
      margin-top: 10px;
      font-size: 0.85em;
      color: var(--secondary);
      font-weight: 700;
      letter-spacing: 1px;
    }

    footer {
      text-align: center;
      padding: 60px 24px;
      color: var(--text-muted);
      font-size: 0.95rem;
      border-top: 1px solid var(--border);
      background: #fafaf9;
      margin-top: 100px;
    }
  
    /* Polaroid Style Photos */
    .polaroid-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 40px 0;
      align-items: center;
    }
    @media (min-width: 768px) {
      .polaroid-container {
        flex-direction: row;
        justify-content: center;
        gap: 36px;
      }
    }
    
    .polaroid-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 12px 24px 12px;
      box-shadow: 0 4px 20px rgba(15, 42, 28, 0.04);
      max-width: 420px;
      width: 100%;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .polaroid-card:hover {
      transform: translateY(-8px) rotate(1deg) !important;
      box-shadow: 0 16px 36px rgba(15, 42, 28, 0.08);
      border-color: var(--secondary) !important;
    }
    
    .polaroid-img-wrapper {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #fafaf9;
      margin-bottom: 12px;
    }
    
    .polaroid-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .polaroid-caption {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0;
      font-weight: 500;
      font-style: italic;
      line-height: 1.4;
    }

  
    
    /* Breadcrumb & Article Navigation */
    .breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.7);
    }
    .breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: var(--secondary);
    }
    .breadcrumb .separator {
      color: rgba(255, 255, 255, 0.4);
      font-weight: 400;
    }
    .breadcrumb .current {
      color: #ffffff;
    }
    .article-navigation {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 64px;
      border-top: 1px solid var(--border);
      padding-top: 40px;
    }
    .nav-card {
      flex: 1;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 24px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .nav-card.prev {
      align-items: flex-start;
      text-align: left;
    }
    .nav-card.next {
      align-items: flex-end;
      text-align: right;
    }
    .nav-card:hover {
      border-color: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(15, 42, 28, 0.04);
    }
    .nav-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .nav-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary);
      transition: color 0.3s;
    }
    .nav-card:hover .nav-title {
      color: var(--secondary);
    }

/* --- Styles from develop.html --- */
:root {
      --primary: #0f2a1c;
      --primary-light: #1d3f2d;
      --secondary: #d97706;
      --secondary-light: #fef3c7;
      --bg: #fcfcfb;
      --card-bg: #ffffff;
      --text: #1c1917;
      --text-muted: #78716c;
      --border: #e7e5e4;
    }
    
    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Outfit', 'Noto Sans TC', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.8;
      padding: 0;
      margin: 0;
    }

    .subpage-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      padding: 100px 24px 120px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .subpage-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: var(--bg);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .header-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .badge {
      background-color: var(--secondary);
      color: white;
      padding: 6px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85em;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: inline-block;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
    }

    h1 {
      font-size: 2.4rem;
      font-weight: 900;
      margin: 0 0 16px 0;
      line-height: 1.4;
      color: #ffffff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .subtitle {
      font-size: 1.2rem;
      color: #a7f3d0;
      margin: 0;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    main {
      max-width: 900px;
      margin: -50px auto 100px auto;
      padding: 0 24px;
      position: relative;
      z-index: 3;
    }

    .intro-card {
      background: var(--card-bg);
      padding: 48px;
      border-radius: 24px;
      box-shadow: 0 12px 40px rgba(15, 42, 28, 0.06);
      border: 1px solid var(--border);
      margin-bottom: 48px;
    }

    .intro-text {
      font-size: 1.18rem;
      color: var(--text);
      font-weight: 500;
      margin: 0;
      text-align: justify;
    }

    h2 {
      color: var(--primary);
      font-size: 1.7rem;
      font-weight: 800;
      margin: 56px 0 28px 0;
      border-left: 6px solid var(--secondary);
      padding-left: 18px;
      display: flex;
      align-items: center;
    }

    p.body-text {
      font-size: 1.05rem;
      color: var(--text);
      margin: 0 0 24px 0;
      text-align: justify;
    }

    /* Technique Card Grid */
    .grid-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      margin: 36px 0;
    }

    @media (min-width: 768px) {
      .grid-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    .info-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.01);
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(15, 42, 28, 0.06);
      border-color: rgba(15, 42, 28, 0.12);
    }

    .card-num {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--secondary);
      opacity: 0.8;
      line-height: 1;
      margin-bottom: 12px;
      font-family: 'Outfit', sans-serif;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--primary);
      margin: 0 0 12px 0;
    }

    .card-text {
      font-size: 0.98rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
      text-align: justify;
    }

    /* Interactive Simulator styling */
    .simulator-card {
      background: var(--card-bg);
      border: 2px solid var(--primary);
      border-radius: 24px;
      padding: 44px;
      margin: 48px 0;
      box-shadow: 0 12px 40px rgba(15, 42, 28, 0.08);
      position: relative;
      overflow: hidden;
    }

    .simulator-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, #15803d, #1d4ed8, #d97706, #b91c1c);
    }

    .sim-header {
      text-align: center;
      margin-bottom: 32px;
    }

    .sim-tag {
      background: var(--secondary-light);
      color: var(--secondary);
      padding: 4px 14px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 800;
      display: inline-block;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .sim-title {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--primary);
      margin: 0 0 8px 0;
    }

    .sim-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin: 0;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-label {
      display: block;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .custom-select {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background-color: #fafaf9;
      font-family: inherit;
      font-size: 1rem;
      color: var(--text);
      outline: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .custom-select:focus {
      border-color: var(--primary);
      background-color: white;
      box-shadow: 0 0 0 3px rgba(15, 42, 28, 0.08);
    }

    .draw-zone {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      margin: 36px 0;
      padding: 24px;
      background-color: #fafaf9;
      border-radius: 18px;
      border: 1px dashed var(--border);
    }

    .draw-btn {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 16px 40px;
      font-size: 1.1rem;
      font-weight: 800;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 15px rgba(15, 42, 28, 0.2);
      font-family: inherit;
    }

    .draw-btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 25px rgba(15, 42, 28, 0.3);
      background-color: var(--primary-light);
    }

    .draw-btn:active {
      transform: translateY(1px);
    }

    /* Result Card animations */
    .result-card {
      width: 100%;
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      display: none;
      box-shadow: 0 8px 30px rgba(0,0,0,0.03);
      transform: scale(0.95);
      opacity: 0;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .result-card.active {
      display: block;
      transform: scale(1);
      opacity: 1;
    }

    .tool-header {
      display: flex;
      align-items: center;
      gap: 16px;
      border-bottom: 2px solid var(--border);
      padding-bottom: 16px;
      margin-bottom: 20px;
    }

    .tool-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #eff6ff;
      border: 2px solid #3b82f6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
    }

    .tool-name-group {
      display: flex;
      flex-direction: column;
    }

    .tool-jp {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }

    .tool-zh {
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--primary);
      margin: 0;
    }

    .tool-desc {
      font-size: 1rem;
      color: var(--text);
      background: #f1f5f9;
      border-left: 4px solid #3b82f6;
      padding: 12px 18px;
      border-radius: 0 8px 8px 0;
      margin-bottom: 20px;
      text-align: justify;
    }

    .prompt-box {
      background: var(--secondary-light);
      border: 1px solid #fde68a;
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 24px;
    }

    .prompt-label {
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
      display: block;
    }

    .prompt-text {
      font-size: 1.05rem;
      font-weight: 700;
      color: #78350f;
      margin: 0;
      text-align: justify;
    }

    .ideas-textarea {
      width: 100%;
      height: 120px;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: 12px;
      font-family: inherit;
      font-size: 0.95rem;
      outline: none;
      resize: none;
      transition: all 0.3s ease;
      margin-bottom: 16px;
    }

    .ideas-textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(15, 42, 28, 0.08);
    }

    .tool-footer {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
    }

    .action-btn {
      font-family: inherit;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid var(--border);
      background: white;
      color: var(--text);
    }

    .action-btn.primary {
      background-color: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .action-btn:hover {
      transform: translateY(-1px);
    }

    .action-btn.primary:hover {
      background-color: var(--primary-light);
    }

    /* Animation effects */
    .spinning {
      animation: shake 0.15s infinite;
    }

    @keyframes shake {
      0% { transform: translate(1px, 1px) rotate(0deg); }
      10% { transform: translate(-1px, -2px) rotate(-1deg); }
      20% { transform: translate(-3px, 0px) rotate(1deg); }
      30% { transform: translate(0px, 2px) rotate(0deg); }
      40% { transform: translate(1px, -1px) rotate(1deg); }
      50% { transform: translate(-1px, 2px) rotate(-1deg); }
      60% { transform: translate(-3px, 1px) rotate(0deg); }
      70% { transform: translate(2px, 1px) rotate(-1deg); }
      80% { transform: translate(-1px, -1px) rotate(1deg); }
      90% { transform: translate(2px, 2px) rotate(0deg); }
      100% { transform: translate(1px, -2px) rotate(-1deg); }
    }

    .callout {
      background: var(--secondary-light);
      border-left: 4px solid var(--secondary);
      padding: 28px;
      border-radius: 12px;
      margin: 56px 0;
      box-shadow: 0 4px 15px rgba(217, 119, 6, 0.05);
    }

    .callout-title {
      font-weight: 700;
      color: var(--secondary);
      font-size: 1.1rem;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .callout-content {
      margin: 0;
      font-size: 1rem;
      color: #78350f;
    }

    .footer-badge {
      display: inline-block;
      margin-top: 10px;
      font-size: 0.85em;
      color: var(--secondary);
      font-weight: 700;
      letter-spacing: 1px;
    }

    footer {
      text-align: center;
      padding: 60px 24px;
      color: var(--text-muted);
      font-size: 0.95rem;
      border-top: 1px solid var(--border);
      background: #fafaf9;
      margin-top: 100px;
    }
  
    /* Polaroid Style Photos */
    .polaroid-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 40px 0;
      align-items: center;
    }
    @media (min-width: 768px) {
      .polaroid-container {
        flex-direction: row;
        justify-content: center;
        gap: 36px;
      }
    }
    
    .polaroid-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 12px 24px 12px;
      box-shadow: 0 4px 20px rgba(15, 42, 28, 0.04);
      max-width: 420px;
      width: 100%;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .polaroid-card:hover {
      transform: translateY(-8px) rotate(1deg) !important;
      box-shadow: 0 16px 36px rgba(15, 42, 28, 0.08);
      border-color: var(--secondary) !important;
    }
    
    .polaroid-img-wrapper {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #fafaf9;
      margin-bottom: 12px;
    }
    
    .polaroid-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .polaroid-caption {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0;
      font-weight: 500;
      font-style: italic;
      line-height: 1.4;
    }

  
    
    /* Breadcrumb & Article Navigation */
    .breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.7);
    }
    .breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: var(--secondary);
    }
    .breadcrumb .separator {
      color: rgba(255, 255, 255, 0.4);
      font-weight: 400;
    }
    .breadcrumb .current {
      color: #ffffff;
    }
    .article-navigation {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 64px;
      border-top: 1px solid var(--border);
      padding-top: 40px;
    }
    .nav-card {
      flex: 1;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 24px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .nav-card.prev {
      align-items: flex-start;
      text-align: left;
    }
    .nav-card.next {
      align-items: flex-end;
      text-align: right;
    }
    .nav-card:hover {
      border-color: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(15, 42, 28, 0.04);
    }
    .nav-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .nav-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary);
      transition: color 0.3s;
    }
    .nav-card:hover .nav-title {
      color: var(--secondary);
    }

/* --- Styles from deliver.html --- */
:root {
      --primary: #0f2a1c;
      --primary-light: #1d3f2d;
      --secondary: #d97706;
      --secondary-light: #fef3c7;
      --bg: #fcfcfb;
      --card-bg: #ffffff;
      --text: #1c1917;
      --text-muted: #78716c;
      --border: #e7e5e4;
      --team-a: #15803d;
      --team-b: #1d4ed8;
      --team-c: #b45309;
      --team-d: #b91c1c;
    }
    
    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Outfit', 'Noto Sans TC', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.8;
      padding: 0;
      margin: 0;
    }

    .subpage-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      padding: 100px 24px 120px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .subpage-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: var(--bg);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .header-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .badge {
      background-color: var(--secondary);
      color: white;
      padding: 6px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85em;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: inline-block;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
    }

    h1 {
      font-size: 2.4rem;
      font-weight: 900;
      margin: 0 0 16px 0;
      line-height: 1.4;
      color: #ffffff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .subtitle {
      font-size: 1.2rem;
      color: #a7f3d0;
      margin: 0;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    main {
      max-width: 900px;
      margin: -50px auto 100px auto;
      padding: 0 24px;
      position: relative;
      z-index: 3;
    }

    .intro-card {
      background: var(--card-bg);
      padding: 48px;
      border-radius: 24px;
      box-shadow: 0 12px 40px rgba(15, 42, 28, 0.06);
      border: 1px solid var(--border);
      margin-bottom: 48px;
    }

    .intro-text {
      font-size: 1.18rem;
      color: var(--text);
      font-weight: 500;
      margin: 0;
      text-align: justify;
    }

    h2 {
      color: var(--primary);
      font-size: 1.7rem;
      font-weight: 800;
      margin: 56px 0 28px 0;
      border-left: 6px solid var(--secondary);
      padding-left: 18px;
      display: flex;
      align-items: center;
    }

    p.body-text {
      font-size: 1.05rem;
      color: var(--text);
      margin: 0 0 24px 0;
      text-align: justify;
    }

    /* Showcase Grid */
    .showcase-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin: 40px 0;
    }

    .showcase-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 36px;
      box-shadow: 0 10px 30px rgba(15, 42, 28, 0.04);
      display: flex;
      flex-direction: column;
      gap: 32px;
      transition: all 0.3s;
      position: relative;
    }

    .showcase-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .team-badge {
      font-size: 0.78rem;
      font-weight: 900;
      padding: 4px 12px;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 12px;
      width: fit-content;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .showcase-card[data-team="A"] { border-left: 8px solid var(--team-a); }
    .showcase-card[data-team="A"] .team-badge { background-color: var(--team-a); }
    .showcase-card[data-team="B"] { border-left: 8px solid var(--team-b); }
    .showcase-card[data-team="B"] .team-badge { background-color: var(--team-b); }
    .showcase-card[data-team="C"] { border-left: 8px solid var(--team-c); }
    .showcase-card[data-team="C"] .team-badge { background-color: var(--team-c); }
    .showcase-card[data-team="D"] { border-left: 8px solid var(--team-d); }
    .showcase-card[data-team="D"] .team-badge { background-color: var(--team-d); }

    .project-name {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--primary);
      margin: 0 0 8px 0;
    }

    .hmw-label {
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--secondary);
      margin: 8px 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hmw-quote {
      font-size: 0.95rem;
      font-style: italic;
      color: #78350f;
      background: var(--secondary-light);
      border-left: 3px solid var(--secondary);
      padding: 8px 16px;
      border-radius: 0 8px 8px 0;
      margin: 0 0 20px 0;
    }

    .project-desc {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0 0 24px 0;
      text-align: justify;
    }

    .feature-list {
      margin: 0 0 24px 0;
      padding-left: 20px;
      font-size: 0.95rem;
    }

    .feature-list li {
      margin-bottom: 8px;
    }

    .action-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      font-family: inherit;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid var(--border);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn.primary {
      background-color: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .btn.primary:hover {
      background-color: var(--primary-light);
      transform: translateY(-2px);
    }

    .btn.secondary {
      background-color: white;
      color: var(--text);
    }

    .btn.secondary:hover {
      background-color: #fafaf9;
      transform: translateY(-2px);
    }

    /* Thumbnail Area */
    .showcase-thumb {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #fafaf9;
      box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: auto;
    }

    .showcase-thumb img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      transition: transform 0.5s;
    }

    .showcase-thumb:hover img {
      transform: scale(1.02);
    }

    .zoom-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 42, 28, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      opacity: 0;
      transition: opacity 0.3s;
      font-weight: 800;
      font-size: 1.1rem;
    }

    .showcase-thumb:hover .zoom-overlay {
      opacity: 1;
    }

    /* Lightbox Modal */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(15, 42, 28, 0.95);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      cursor: zoom-out;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lightbox.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 85vh;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      cursor: default;
      transform: scale(0.95);
      transition: transform 0.3s ease;
    }

    .lightbox.active .lightbox-content {
      transform: scale(1);
    }

    .lightbox-content img {
      display: block;
      max-width: 100%;
      height: auto;
      max-height: 85vh;
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255,255,255,0.15);
      color: white;
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      font-size: 1.8rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .lightbox-close:hover {
      background: rgba(255,255,255,0.3);
    }

    .callout {
      background: var(--secondary-light);
      border-left: 4px solid var(--secondary);
      padding: 28px;
      border-radius: 12px;
      margin: 56px 0;
      box-shadow: 0 4px 15px rgba(217, 119, 6, 0.05);
    }

    .callout-title {
      font-weight: 700;
      color: var(--secondary);
      font-size: 1.1rem;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .callout-content {
      margin: 0;
      font-size: 1rem;
      color: #78350f;
    }

    .footer-badge {
      display: inline-block;
      margin-top: 10px;
      font-size: 0.85em;
      color: var(--secondary);
      font-weight: 700;
      letter-spacing: 1px;
    }

    footer {
      text-align: center;
      padding: 60px 24px;
      color: var(--text-muted);
      font-size: 0.95rem;
      border-top: 1px solid var(--border);
      background: #fafaf9;
      margin-top: 100px;
    }

    /* Polaroid Style Photos */
    .polaroid-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 40px 0;
      align-items: center;
    }
    @media (min-width: 768px) {
      .polaroid-container {
        flex-direction: row;
        justify-content: center;
        gap: 36px;
      }
    }
    
    .polaroid-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 12px 24px 12px;
      box-shadow: 0 4px 20px rgba(15, 42, 28, 0.04);
      max-width: 420px;
      width: 100%;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .polaroid-card:hover {
      transform: translateY(-8px) rotate(1deg) !important;
      box-shadow: 0 16px 36px rgba(15, 42, 28, 0.08);
      border-color: var(--secondary) !important;
    }
    
    .polaroid-img-wrapper {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #fafaf9;
      margin-bottom: 12px;
    }
    
    .polaroid-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .polaroid-caption {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0;
      font-weight: 500;
      font-style: italic;
      line-height: 1.4;
    }
  
    
    /* Breadcrumb & Article Navigation */
    .breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.7);
    }
    .breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: var(--secondary);
    }
    .breadcrumb .separator {
      color: rgba(255, 255, 255, 0.4);
      font-weight: 400;
    }
    .breadcrumb .current {
      color: #ffffff;
    }
    .article-navigation {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 64px;
      border-top: 1px solid var(--border);
      padding-top: 40px;
    }
    .nav-card {
      flex: 1;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 24px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .nav-card.prev {
      align-items: flex-start;
      text-align: left;
    }
    .nav-card.next {
      align-items: flex-end;
      text-align: right;
    }
    .nav-card:hover {
      border-color: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(15, 42, 28, 0.04);
    }
    .nav-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .nav-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary);
      transition: color 0.3s;
    }
    .nav-card:hover .nav-title {
      color: var(--secondary);
    }

