﻿
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:      #FFFFFF;
      --bg:         #F7F5F2;
      --surface:    #FFFFFF;
      --border:     #E2DDD8;
      --text:       #1A1917;
      --muted:      #6B6762;
      --red:        #D93025;
      --red-light:  #FEF0EF;
      --red-border: #F4B5B1;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 5vw;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      background: rgba(247,245,242,0.94);
      backdrop-filter: blur(8px);
      z-index: 200;
    }

    .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: -0.03em;
      color: var(--text);
      text-decoration: none;
    }
    .logo span { color: var(--red); }

    .nav-cta {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      color: #fff;
      background: var(--red);
      text-decoration: none;
      padding: 0.5rem 1.25rem;
      border-radius: 6px;
      transition: opacity 0.15s;
      white-space: nowrap;
    }
    .nav-cta:hover { opacity: 0.88; }

    .page-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3.5rem 5vw 5rem;
    }

    .breadcrumb {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }
    .breadcrumb a {
      color: var(--muted);
      text-decoration: none;
    }
    .breadcrumb a:hover { color: var(--text); }

    .section-eyebrow {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.6rem;
    }

    .page-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 0.6rem;
    }

    .page-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .profile-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .profile-top { display: flex; align-items: center; gap: 0.9rem; }

    .profile-avatar {
      width: 50px; height: 50px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--border);
    }
    .profile-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .profile-meta { flex: 1; min-width: 0; }
    .profile-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
    }
    .profile-role { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }

    .profile-followers {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.35rem;
    }

    .profile-next {
      background: var(--bg);
      border-radius: 8px;
      padding: 0.7rem 0.85rem;
    }
    .profile-next-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.25rem;
    }
    .profile-next-event {
      font-size: 0.82rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.4;
    }
    .profile-next-time { font-size: 0.75rem; color: var(--red); margin-top: 0.2rem; font-weight: 600; }

    .follow-btn {
      display: block;
      text-align: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--red);
      background: var(--red-light);
      border: 1.5px solid var(--red-border);
      border-radius: 6px;
      padding: 0.55rem 1rem;
      text-decoration: none;
      transition: background 0.15s;
      cursor: pointer;
    }
    .follow-btn:hover { background: #fde0de; }

    .profile-card-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }
    .profile-card-link:hover .profile-name { color: var(--red); }
    .profile-card {
      display: flex;
      flex-direction: column;
    }

    .load-more-wrap {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .btn-more {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--muted);
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 6px;
      padding: 0.75rem 2rem;
      cursor: not-allowed;
      opacity: 0.55;
    }

    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      flex-wrap: wrap;
    }

    .pagination-btn {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      min-width: 38px;
      height: 38px;
      padding: 0 0.5rem;
      border-radius: 6px;
      border: 1.5px solid var(--border);
      background: var(--surface);
      color: var(--muted);
      cursor: not-allowed;
      opacity: 0.55;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .pagination-btn.active {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
      opacity: 1;
      cursor: default;
    }

    .pagination-ellipsis {
      font-size: 0.85rem;
      color: var(--muted);
      padding: 0 0.25rem;
      opacity: 0.55;
    }

    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 1.25rem 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    footer p { font-size: 0.78rem; color: var(--muted); }
    footer a { color: var(--muted); text-decoration: none; font-size: 0.78rem; }
    footer a:hover { color: var(--text); }
    .footer-links { display: flex; gap: 1.25rem; }

    @media (max-width: 480px) {
      footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    }
  

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:      #FFFFFF;
      --bg:         #F7F5F2;
      --surface:    #FFFFFF;
      --border:     #E2DDD8;
      --text:       #1A1917;
      --muted:      #6B6762;
      --red:        #D93025;
      --red-light:  #FEF0EF;
      --red-border: #F4B5B1;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 5vw;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      background: rgba(247,245,242,0.94);
      backdrop-filter: blur(8px);
      z-index: 200;
    }

    .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: -0.03em;
      color: var(--text);
      text-decoration: none;
    }
    .logo span { color: var(--red); }

    .nav-cta {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      color: #fff;
      background: var(--red);
      text-decoration: none;
      padding: 0.5rem 1.25rem;
      border-radius: 6px;
      transition: opacity 0.15s;
    }
    .nav-cta:hover { opacity: 0.88; }

    .page-wrap {
      max-width: 900px;
      margin: 0 auto;
      padding: 2.5rem 5vw 4rem;
    }

    .breadcrumb {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }
    .breadcrumb a { color: var(--muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--text); }

    .profile-hero {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem;
      display: flex;
      gap: 1.75rem;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 600px) {
      .profile-hero { flex-direction: column; align-items: center; text-align: center; }
    }

    .profile-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--border);
      border: 3px solid var(--white);
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .profile-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .profile-info { flex: 1; min-width: 0; }

    .profile-eyebrow {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.4rem;
    }

    .profile-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      margin-bottom: 0.25rem;
    }

    .profile-role {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .profile-followers {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .profile-bio {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .follow-btn {
      display: inline-block;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--red);
      background: var(--red-light);
      border: 1.5px solid var(--red-border);
      border-radius: 6px;
      padding: 0.65rem 1.5rem;
      cursor: pointer;
      transition: background 0.15s;
    }
    .follow-btn:hover { background: #fde0de; }

    .next-highlight {
      background: var(--red);
      color: #fff;
      border-radius: 14px;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1.5rem;
    }
    .next-highlight-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-bottom: 0.35rem;
    }
    .next-highlight-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
    }
    .next-highlight-meta {
      font-size: 0.85rem;
      opacity: 0.9;
    }

    .section-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      margin-bottom: 1rem;
    }

    .section-card h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .appearance-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

    .appearance-item {
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
      padding: 0.85rem;
      background: var(--bg);
      border-radius: 10px;
    }

    .appearance-type {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--red);
      background: var(--red-light);
      border: 1px solid var(--red-border);
      border-radius: 4px;
      padding: 0.2rem 0.45rem;
      white-space: nowrap;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .appearance-body { flex: 1; min-width: 0; }
    .appearance-title {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1.4;
    }
    .appearance-meta {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 0.2rem;
    }

    .library-tabs {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 1.25rem;
      border-bottom: 1px solid var(--border);
      padding-bottom: 0;
    }
    .library-tab {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.55rem 1rem;
      border: none;
      background: none;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.15s, border-color 0.15s;
    }
    .library-tab:hover { color: var(--text); }
    .library-tab.active {
      color: var(--red);
      border-bottom-color: var(--red);
    }

    .library-panel { display: none; }
    .library-panel.active { display: block; }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1rem;
    }

    .video-card {
      background: var(--bg);
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s;
      border: 1px solid transparent;
    }
    .video-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      border-color: var(--border);
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #000;
      overflow: hidden;
    }
    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .video-play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.25);
      transition: background 0.15s;
    }
    .video-card:hover .video-play { background: rgba(0,0,0,0.4); }
    .video-play span {
      width: 44px;
      height: 44px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1rem;
      padding-left: 3px;
    }
    .video-duration {
      position: absolute;
      bottom: 0.4rem;
      right: 0.4rem;
      font-size: 0.68rem;
      font-weight: 600;
      color: #fff;
      background: rgba(0,0,0,0.75);
      padding: 0.15rem 0.4rem;
      border-radius: 3px;
    }

    .video-info { padding: 0.75rem; }
    .video-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 0.25rem;
    }
    .video-meta { font-size: 0.75rem; color: var(--muted); }

    .podcast-list { display: flex; flex-direction: column; gap: 0.85rem; }

    .podcast-item {
      background: var(--bg);
      border-radius: 10px;
      padding: 1rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    @media (max-width: 500px) {
      .podcast-item { flex-direction: column; }
    }

    .podcast-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: #e8f0fe;
      color: #1565C0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .podcast-body { flex: 1; min-width: 0; }
    .podcast-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.15rem;
    }
    .podcast-meta {
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: 0.65rem;
    }
    .podcast-item audio {
      width: 100%;
      height: 36px;
    }

    .library-empty {
      text-align: center;
      padding: 2rem 1rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .video-modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 400;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s;
    }
    .video-modal.open { opacity: 1; pointer-events: auto; }
    .video-modal-inner {
      width: 100%;
      max-width: 800px;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }
    .video-modal-close {
      position: absolute;
      top: -2.5rem;
      right: 0;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
    }
    .video-modal iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      display: block;
      border: none;
    }

    .not-found {
      text-align: center;
      padding: 4rem 1rem;
    }
    .not-found h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .not-found a {
      color: var(--red);
      font-weight: 600;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.25rem 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    footer p { font-size: 0.78rem; color: var(--muted); }
    footer a { color: var(--muted); text-decoration: none; font-size: 0.78rem; }
    footer a:hover { color: var(--text); }
    .footer-links { display: flex; gap: 1.25rem; }
  
