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

    :root {
      --red: #B22222;
      --red-d: #8B1A1A;
      --red-l: #CC3333;
      --gold: #D4AF37;
      --gold-l: #E8C94A;
      --gold-d: #B8960C;
      --navy: #1E2A38;
      --navy-l: #2C3E54;
      --cream: #FDF8F0;
      --cream-d: #F5EDD8;
      --white: #FFFFFF;
      --text: #2C2C2C;
      --text-l: #666;
      --border: rgba(212, 175, 55, 0.3);
      --shadow: 0 8px 32px rgba(30, 42, 56, 0.15);
      --r: 12px;
      --fh: 'Cinzel', serif;
      --fb: 'Poppins', sans-serif;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--fb);
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden
    }

    ::-webkit-scrollbar {
      width: 8px
    }

    ::-webkit-scrollbar-track {
      background: var(--cream-d)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 4px
    }

    .hidden {
      display: none !important
    }

    .page {
      display: none
    }

    .page.active {
      display: block
    }

    img {
      max-width: 100%;
      display: block
    }

    /* ===== NAVBAR ===== */
    .navbar {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid var(--gold);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35)
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      text-decoration: none
    }

    .nav-logo-icon {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      color: var(--navy);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
      flex-shrink: 0
    }

    .nl-title {
      font-family: var(--fh);
      color: var(--gold);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.1;
      display: block
    }

    .nl-sub {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 2px;
      display: block
    }

    .nav-links {
      display: flex;
      gap: 2px;
      align-items: center
    }

    .nl {
      font-family: var(--fb);
      font-size: 12.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.82);
      padding: 7px 13px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.4px;
      border: none;
      background: none
    }

    .nl:hover,
    .nl.active {
      color: var(--gold);
      background: rgba(212, 175, 55, 0.1)
    }

    .nl-cta {
      background: linear-gradient(135deg, var(--red), var(--red-d)) !important;
      color: #fff !important;
      border: 1px solid var(--red-l);
      border-radius: 7px !important
    }

    .nl-cta:hover {
      background: linear-gradient(135deg, var(--red-l), var(--red)) !important
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      display: block;
      transition: all 0.3s
    }

    .mob-menu {
      display: none;
      background: var(--navy-l);
      border-top: 1px solid rgba(255, 255, 255, 0.06)
    }

    .mob-menu.open {
      display: block
    }

    .mob-menu .nl {
      display: block;
      padding: 13px 22px;
      border-radius: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04)
    }

    @media(max-width:900px) {
      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }
    }

    /* ===== BUTTONS ===== */
    .btn {
      padding: 13px 28px;
      border-radius: 8px;
      font-family: var(--fb);
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      letter-spacing: 0.4px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: var(--navy);
      box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3)
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45)
    }

    .btn-red {
      background: linear-gradient(135deg, var(--red), var(--red-d));
      color: #fff;
      box-shadow: 0 4px 16px rgba(178, 34, 34, 0.3)
    }

    .btn-red:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(178, 34, 34, 0.45)
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.4)
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px)
    }

    .bsm {
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-family: var(--fb);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: all 0.2s
    }

    .bsm-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: var(--navy)
    }

    .bsm-gold:hover {
      transform: scale(1.04)
    }

    .bsm-red {
      background: var(--red);
      color: #fff
    }

    .bsm-red:hover {
      background: var(--red-d)
    }

    .bsm-green {
      background: #25D366;
      color: #fff
    }

    .bsm-green:hover {
      background: #1ebe5b
    }

    .bsm-navy {
      background: var(--navy);
      color: var(--gold);
      border: 1px solid var(--border)
    }

    /* ===== SECTION COMMONS ===== */
    .sec {
      padding: 76px 20px
    }

    .sec-inner {
      max-width: 1280px;
      margin: 0 auto
    }

    .sec-tag {
      font-size: 11px;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      margin-bottom: 8px
    }

    .sec-tag::before,
    .sec-tag::after {
      content: '—'
    }

    .sec-title {
      font-family: var(--fh);
      font-size: clamp(22px, 3.2vw, 36px);
      font-weight: 700;
      color: var(--navy);
      text-align: center;
      margin-bottom: 14px;
      line-height: 1.3
    }

    .sec-title.lt {
      color: #fff
    }

    .sec-sub {
      text-align: center;
      color: var(--text-l);
      max-width: 580px;
      margin: 0 auto 48px;
      font-size: 14.5px;
      line-height: 1.8
    }

    .royal-div {
      text-align: center;
      margin: 10px 0;
      font-size: 20px;
      color: var(--gold);
      letter-spacing: 14px;
      opacity: 0.65
    }

    /* ===== SLIDER ===== */
    .slider-wrap {
      position: relative;
      overflow: hidden;
      height: 92vh;
      min-height: 560px
    }

    .slider-track {
      display: flex;
      height: 100%;
      transition: transform 0.85s cubic-bezier(.77, 0, .18, 1)
    }

    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-shrink: 0;
      overflow: hidden
    }

    .slide-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.08);
      transition: transform 7s ease
    }

    .slide.is-active .slide-img {
      transform: scale(1)
    }

    .slide-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(8, 14, 26, 0.45) 0%, rgba(8, 14, 26, 0.72) 100%)
    }

    .slide-content {
      position: relative;
      z-index: 2;
      padding: 0 24px;
      max-width: 820px;
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.75s 0.35s, transform 0.75s 0.35s
    }

    .slide.is-active .slide-content {
      opacity: 1;
      transform: none
    }

    .slide-eyebrow {
      font-size: 11px;
      letter-spacing: 5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block
    }

    .slide-title {
      font-family: var(--fh);
      font-size: clamp(26px, 5.5vw, 60px);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 12px;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55)
    }

    .slide-title em {
      color: var(--gold);
      font-style: normal;
      display: block
    }

    .slide-sub {
      font-size: clamp(14px, 2vw, 19px);
      color: rgba(255, 255, 255, 0.75);
      font-style: italic;
      font-family: 'Playfair Display', serif;
      margin-bottom: 32px
    }

    .slide-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap
    }

    .sl-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10
    }

    .sl-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.32);
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      padding: 0
    }

    .sl-dot.active {
      background: var(--gold);
      transform: scale(1.35)
    }

    .sl-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      backdrop-filter: blur(6px);
      transition: all 0.2s
    }

    .sl-arrow:hover {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold)
    }

    .sl-prev {
      left: 22px
    }

    .sl-next {
      right: 22px
    }

    .sl-prog {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--gold);
      z-index: 10;
      transition: none
    }

    @keyframes prog {
      from {
        width: 0%
      }

      to {
        width: 100%
      }
    }

    /* ===== STATS BAR ===== */
    .stats-bar {
      background: var(--navy);
      border-bottom: 3px solid var(--gold)
    }

    .stats-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap
    }

    .stat-item {
      text-align: center;
      padding: 22px 16px;
      border-right: 1px solid rgba(255, 255, 255, 0.06)
    }

    .stat-item:last-child {
      border-right: none
    }

    .stat-num {
      font-family: var(--fh);
      font-size: 34px;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1
    }

    .stat-lbl {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 2.5px;
      margin-top: 4px;
      display: block
    }

    @media(max-width:480px) {
      .stat-item {
        padding: 16px 10px
      }

      .stat-num {
        font-size: 26px
      }
    }

    /* ===== ABOUT ===== */
    .about-section {
      background: var(--white)
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center
    }

    .about-img-wrap {
      position: relative
    }

    .about-img {
      width: 100%;
      border-radius: var(--r);
      box-shadow: var(--shadow);
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block
    }

    .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: linear-gradient(135deg, var(--red), var(--red-d));
      color: #fff;
      padding: 18px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(178, 34, 34, 0.4);
      min-width: 112px
    }

    .about-badge .abn {
      font-family: var(--fh);
      font-size: 34px;
      font-weight: 700;
      display: block
    }

    .about-tag {
      color: var(--red);
      font-size: 11px;
      letter-spacing: 3px;
      font-weight: 600;
      margin-bottom: 10px
    }

    .about-h {
      font-family: var(--fh);
      font-size: clamp(20px, 2.8vw, 30px);
      color: var(--navy);
      margin-bottom: 18px;
      line-height: 1.35
    }

    .about-p {
      color: var(--text-l);
      line-height: 1.9;
      margin-bottom: 14px;
      font-size: 14.5px
    }

    .about-feats {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 22px 0
    }

    .about-feat {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      background: var(--cream);
      padding: 13px;
      border-radius: 8px;
      border-left: 3px solid var(--gold)
    }

    .about-feat i {
      color: var(--gold);
      margin-top: 2px;
      flex-shrink: 0
    }

    .about-feat strong {
      display: block;
      font-size: 13.5px;
      color: var(--navy);
      margin-bottom: 2px
    }

    .about-feat span {
      font-size: 12.5px;
      color: var(--text-l)
    }

    @media(max-width:860px) {
      .about-grid {
        grid-template-columns: 1fr
      }

      .about-badge {
        bottom: 10px;
        right: 10px
      }
    }

    /* ===== EVENTS ===== */
    .events-section {
      background: var(--cream)
    }

    .events-tabs {
      display: flex;
      background: var(--white);
      border-radius: var(--r);
      overflow: hidden;
      border: 2px solid var(--border);
      margin-bottom: 32px;
      box-shadow: 0 2px 12px rgba(30, 42, 56, 0.06)
    }

    .ev-tab {
      flex: 1;
      padding: 15px 12px;
      text-align: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 13.5px;
      font-family: var(--fb);
      border: none;
      background: transparent;
      color: var(--text-l);
      transition: all 0.25s;
      border-right: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px
    }

    .ev-tab:last-child {
      border-right: none
    }

    .ev-tab.active {
      background: var(--navy);
      color: var(--gold)
    }

    .ev-tab .tc {
      background: var(--red);
      color: #fff;
      font-size: 10px;
      padding: 2px 7px;
      border-radius: 20px
    }

    .ev-tab.active .tc {
      background: var(--gold);
      color: var(--navy)
    }

    .ev-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px
    }

    .ev-card {
      background: var(--white);
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 2px 14px rgba(30, 42, 56, 0.07);
      transition: all 0.3s;
      cursor: pointer
    }

    .ev-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(30, 42, 56, 0.14);
      border-color: var(--gold)
    }

    .ev-img {
      height: 195px;
      position: relative;
      overflow: hidden
    }

    .ev-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s
    }

    .ev-card:hover .ev-img img {
      transform: scale(1.06)
    }

    .ev-img-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(8, 14, 26, 0.65) 100%)
    }

    .ev-status {
      position: absolute;
      top: 13px;
      left: 13px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1px
    }

    .ev-done {
      background: rgba(37, 211, 102, 0.18);
      color: #25D366;
      border: 1px solid rgba(37, 211, 102, 0.38)
    }

    .ev-soon {
      background: rgba(212, 175, 55, 0.18);
      color: var(--gold);
      border: 1px solid rgba(212, 175, 55, 0.38)
    }

    .ev-date-b {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: var(--red);
      color: #fff;
      padding: 7px 13px;
      border-radius: 8px;
      text-align: center;
      min-width: 56px
    }

    .ev-date-b .dy {
      font-family: var(--fh);
      font-size: 20px;
      font-weight: 700;
      line-height: 1
    }

    .ev-date-b .mn {
      font-size: 10px;
      opacity: 0.85;
      letter-spacing: 1px
    }

    .ev-body {
      padding: 20px
    }

    .ev-title {
      font-family: var(--fh);
      font-size: 15.5px;
      color: var(--navy);
      margin-bottom: 8px
    }

    .ev-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 12px
    }

    .ev-meta span {
      font-size: 11.5px;
      color: var(--text-l);
      display: flex;
      align-items: center;
      gap: 5px
    }

    .ev-meta i {
      color: var(--gold)
    }

    .ev-desc {
      font-size: 12.5px;
      color: var(--text-l);
      line-height: 1.72;
      margin-bottom: 14px
    }

    .ev-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 12px;
      border-top: 1px solid rgba(0, 0, 0, 0.06)
    }

    /* ===== COUNTDOWN ===== */
    .countdown-bar {
      background: var(--navy);
      border-radius: var(--r);
      padding: 26px 28px;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      border: 1px solid rgba(212, 175, 55, 0.2)
    }

    .cd-label {
      color: var(--gold);
      font-family: var(--fh);
      font-size: 15.5px;
      flex: 1;
      min-width: 190px
    }

    .cd-label small {
      display: block;
      color: rgba(255, 255, 255, 0.45);
      font-size: 11.5px;
      font-family: var(--fb);
      margin-top: 4px
    }

    .cd-timer {
      display: flex;
      gap: 12px
    }

    .cd-unit {
      text-align: center;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(212, 175, 55, 0.18);
      border-radius: 10px;
      padding: 12px 16px;
      min-width: 68px
    }

    .cd-unit .n {
      font-family: var(--fh);
      font-size: 30px;
      color: var(--gold);
      display: block;
      line-height: 1
    }

    .cd-unit .l {
      font-size: 9.5px;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 2px
    }

    @media(max-width:640px) {
      .countdown-bar {
        flex-direction: column;
        align-items: flex-start
      }

      .cd-timer {
        gap: 8px
      }

      .cd-unit {
        padding: 10px 12px;
        min-width: 54px
      }

      .cd-unit .n {
        font-size: 22px
      }
    }

    /* ===== GALLERY ===== */
    .gallery-section {
      background: var(--white)
    }

    .g-filter {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px
    }

    .g-btn {
      padding: 8px 18px;
      border-radius: 7px;
      font-size: 12.5px;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid var(--border);
      background: var(--cream);
      color: var(--text-l);
      font-family: var(--fb);
      transition: all 0.2s
    }

    .g-btn:hover,
    .g-btn.active {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--navy)
    }

    .g-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px
    }

    @media(max-width:900px) {
      .g-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media(max-width:600px) {
      .g-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    .g-item {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      border: 2px solid var(--border);
      transition: all 0.3s;
      aspect-ratio: 1
    }

    .g-item:hover {
      border-color: var(--gold);
      box-shadow: 0 8px 28px rgba(30, 42, 56, 0.2);
      transform: scale(1.03)
    }

    .g-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s
    }

    .g-item:hover img {
      transform: scale(1.08)
    }

    .g-ov {
      position: absolute;
      inset: 0;
      background: rgba(8, 14, 26, 0.65);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px
    }

    .g-item:hover .g-ov {
      opacity: 1
    }

    .g-ov i {
      font-size: 26px;
      color: var(--gold)
    }

    .g-ov span {
      color: #fff;
      font-size: 12px;
      font-weight: 600
    }

    .g-tag {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(8, 14, 26, 0.8);
      color: var(--gold);
      border: 1px solid rgba(212, 175, 55, 0.3);
      font-size: 9.5px;
      padding: 3px 9px;
      border-radius: 20px;
      backdrop-filter: blur(4px)
    }

    /* ===== MEMBERS ===== */
    .members-section {
      background: var(--cream)
    }

    .m-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 22px
    }

    .m-card {
      background: var(--white);
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 2px 14px rgba(30, 42, 56, 0.07);
      transition: all 0.3s;
      cursor: pointer
    }

    .m-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(30, 42, 56, 0.15);
      border-color: var(--gold)
    }

    .m-card-top {
      height: 150px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden
    }

    .m-card-top::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 20px)
    }

    .m-avatar {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 3px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fh);
      font-size: 26px;
      font-weight: 700;
      color: var(--gold);
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3)
    }

    .m-zone-badge {
      position: absolute;
      top: 11px;
      right: 11px;
      background: var(--red);
      color: #fff;
      font-size: 9.5px;
      padding: 3px 9px;
      border-radius: 20px;
      font-weight: 600;
      letter-spacing: 1px
    }

    .m-body {
      padding: 18px
    }

    .m-name {
      font-family: var(--fh);
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px
    }

    .m-biz {
      font-size: 12.5px;
      color: var(--text-l);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .m-biz i {
      color: var(--gold)
    }

    .m-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(0, 0, 0, 0.05)
    }

    .m-zone-txt {
      font-size: 11.5px;
      color: var(--text-l)
    }

    /* ===== TEAM ===== */
    .team-section {
      background: var(--navy)
    }

    .t-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 24px
    }

    .t-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: var(--r);
      overflow: hidden;
      text-align: center;
      transition: all 0.3s
    }

    .t-card:hover {
      transform: translateY(-6px);
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.09)
    }

    .t-top {
      height: 170px;
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden
    }

    .t-top::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.06;
      background: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 20px)
    }

    .t-avatar {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      margin-bottom: -43px;
      position: relative;
      z-index: 2;
      border: 4px solid var(--gold);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fh);
      font-size: 26px;
      font-weight: 700;
      color: var(--gold)
    }

    .t-body {
      padding: 52px 18px 22px
    }

    .t-role {
      font-size: 10px;
      letter-spacing: 2.5px;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 5px;
      text-transform: uppercase
    }

    .t-name {
      font-family: var(--fh);
      font-size: 15.5px;
      color: #fff;
      margin-bottom: 4px
    }

    .t-biz {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 12px
    }

    .t-zone {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.38);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      margin-bottom: 13px
    }

    .t-zone i {
      color: var(--gold)
    }

    .t-btns {
      display: flex;
      gap: 7px;
      justify-content: center
    }

    .t-btn {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s;
      border: none
    }

    .t-ph {
      background: rgba(178, 34, 34, 0.15);
      color: var(--red)
    }

    .t-ph:hover {
      background: var(--red);
      color: #fff
    }

    .t-wa {
      background: rgba(37, 211, 102, 0.15);
      color: #25D366
    }

    .t-wa:hover {
      background: #25D366;
      color: #fff
    }

    /* ===== CONTACT ===== */
    .contact-section {
      background: var(--cream)
    }

    .c-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 36px;
      align-items: start
    }

    @media(max-width:860px) {
      .c-layout {
        grid-template-columns: 1fr
      }
    }

    .c-info {
      background: var(--navy);
      border-radius: var(--r);
      padding: 34px;
      border: 1px solid rgba(212, 175, 55, 0.18)
    }

    .c-info-title {
      font-family: var(--fh);
      font-size: 21px;
      color: var(--gold);
      margin-bottom: 6px
    }

    .c-info-sub {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 28px;
      line-height: 1.65
    }

    .c-item {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
      align-items: flex-start
    }

    .c-icon {
      width: 42px;
      height: 42px;
      border-radius: 9px;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0
    }

    .c-item label {
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.38);
      text-transform: uppercase;
      display: block;
      margin-bottom: 3px
    }

    .c-item span,
    .c-item a {
      color: rgba(255, 255, 255, 0.88);
      font-size: 13.5px;
      text-decoration: none;
      line-height: 1.6;
      display: block
    }

    .c-item a:hover {
      color: var(--gold)
    }

    .c-socials {
      display: flex;
      gap: 9px;
      margin-top: 26px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.07)
    }

    .c-soc {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s
    }

    .c-soc:hover {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold)
    }

    .c-form-card {
      background: var(--white);
      border-radius: var(--r);
      padding: 34px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(30, 42, 56, 0.08)
    }

    .c-form-title {
      font-family: var(--fh);
      font-size: 21px;
      color: var(--navy);
      margin-bottom: 5px
    }

    .c-form-sub {
      font-size: 12.5px;
      color: var(--text-l);
      margin-bottom: 24px
    }

    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px
    }

    .cf-row.full {
      grid-template-columns: 1fr
    }

    @media(max-width:500px) {
      .cf-row {
        grid-template-columns: 1fr
      }
    }

    .cf-g {
      display: flex;
      flex-direction: column;
      gap: 5px
    }

    .cf-g label {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.4px;
      text-transform: uppercase
    }

    .cf-c {
      padding: 11px 13px;
      border: 2px solid rgba(0, 0, 0, 0.07);
      border-radius: 7px;
      font-family: var(--fb);
      font-size: 13.5px;
      color: var(--text);
      background: var(--cream);
      transition: border 0.2s;
      width: 100%;
      resize: vertical
    }

    .cf-c:focus {
      outline: none;
      border-color: var(--gold);
      background: #fff
    }

    .cf-c.err {
      border-color: var(--red)
    }

    .errmsg {
      font-size: 11px;
      color: var(--red);
      margin-top: 2px
    }

    /* ===== MEMBER DETAIL ===== */
    .det-hero {
      background: var(--navy);
      padding: 48px 20px;
      border-bottom: 3px solid var(--gold)
    }

    .det-hero-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 28px
    }

    .det-avatar {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 4px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fh);
      font-size: 38px;
      color: var(--gold);
      box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.18)
    }

    .det-name {
      font-family: var(--fh);
      font-size: clamp(20px, 3vw, 30px);
      color: #fff;
      margin-bottom: 4px
    }

    .det-biz {
      color: var(--gold);
      font-size: 15px;
      margin-bottom: 10px
    }

    .det-badges {
      display: flex;
      gap: 7px;
      flex-wrap: wrap
    }

    .badge {
      padding: 4px 11px;
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 1px
    }

    .b-red {
      background: rgba(178, 34, 34, 0.2);
      color: #FF6B6B;
      border: 1px solid rgba(178, 34, 34, 0.4)
    }

    .b-gold {
      background: rgba(212, 175, 55, 0.15);
      color: var(--gold);
      border: 1px solid rgba(212, 175, 55, 0.4)
    }

    .b-green {
      background: rgba(37, 211, 102, 0.15);
      color: #25D366;
      border: 1px solid rgba(37, 211, 102, 0.4)
    }

    .det-acts {
      display: flex;
      gap: 9px;
      margin-top: 14px;
      flex-wrap: wrap
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 12.5px;
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--fb);
      margin-bottom: 14px;
      transition: color 0.2s;
      padding: 0
    }

    .back-btn:hover {
      color: var(--gold)
    }

    .det-body {
      max-width: 900px;
      margin: 0 auto;
      padding: 36px 20px
    }

    .det-sec {
      background: #fff;
      border-radius: var(--r);
      padding: 26px;
      margin-bottom: 22px;
      box-shadow: 0 2px 14px rgba(30, 42, 56, 0.07);
      border: 1px solid var(--border)
    }

    .det-sec-hdr {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--cream)
    }

    .det-sec-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: linear-gradient(135deg, var(--navy), var(--navy-l));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 15px;
      flex-shrink: 0
    }

    .det-sec-title {
      font-family: var(--fh);
      font-size: 15px;
      color: var(--navy);
      font-weight: 700
    }

    .det-sec-sub {
      font-size: 11.5px;
      color: var(--text-l)
    }

    .det-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px
    }

    @media(max-width:600px) {
      .det-grid {
        grid-template-columns: 1fr
      }

      .det-hero-inner {
        flex-direction: column;
        text-align: center
      }

      .det-acts {
        justify-content: center
      }
    }

    .det-field label {
      font-size: 10.5px;
      letter-spacing: 1px;
      color: var(--text-l);
      text-transform: uppercase;
      font-weight: 600;
      display: block;
      margin-bottom: 3px
    }

    .det-field .val {
      font-size: 13.5px;
      color: var(--text);
      font-weight: 500
    }

    .det-field .mono {
      font-family: monospace;
      letter-spacing: 2px
    }

    .photo-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 14px
    }

    .gal-ph {
      aspect-ratio: 1;
      border-radius: 7px;
      border: 2px solid var(--border);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--text-l)
    }

    .gal-ph:hover {
      transform: scale(1.04)
    }

    .sig-box {
      background: var(--cream);
      border: 2px dashed var(--border);
      border-radius: 7px;
      padding: 22px;
      text-align: center;
      color: var(--text-l);
      font-size: 12.5px;
      margin-top: 14px
    }

    .sig-box i {
      font-size: 30px;
      color: var(--gold);
      display: block;
      margin-bottom: 7px
    }

    /* ===== PAGE HEADER ===== */
    .pg-hdr {
      background: var(--navy);
      padding: 56px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom: 3px solid var(--gold)
    }

    .pg-hdr::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 28px), repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 28px)
    }

    .pg-hdr-inner {
      position: relative;
      z-index: 1
    }

    .pg-hdr-tag {
      font-size: 10.5px;
      letter-spacing: 4px;
      color: var(--gold);
      margin-bottom: 9px;
      text-transform: uppercase
    }

    .pg-hdr-title {
      font-family: var(--fh);
      font-size: clamp(24px, 4vw, 42px);
      color: #fff;
      font-weight: 700
    }

    .pg-hdr-sub {
      color: rgba(255, 255, 255, 0.55);
      margin-top: 9px;
      font-size: 14px
    }

    /* ===== MEMBER PAGE SEARCH ===== */
    .sfbar {
      background: #fff;
      padding: 22px;
      border-radius: var(--r);
      margin-bottom: 28px;
      box-shadow: 0 2px 14px rgba(30, 42, 56, 0.07);
      border: 1px solid var(--border);
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap
    }

    .sw {
      flex: 1;
      min-width: 180px;
      position: relative
    }

    .sw i {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-l)
    }

    .si {
      width: 100%;
      padding: 11px 13px 11px 38px;
      border: 2px solid rgba(0, 0, 0, 0.08);
      border-radius: 7px;
      font-family: var(--fb);
      font-size: 13.5px;
      color: var(--text);
      background: var(--cream);
      transition: border 0.2s
    }

    .si:focus {
      outline: none;
      border-color: var(--gold)
    }

    .zf {
      display: flex;
      gap: 7px;
      flex-wrap: wrap
    }

    .zb {
      padding: 7px 14px;
      border-radius: 6px;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid rgba(0, 0, 0, 0.09);
      background: var(--cream);
      color: var(--text-l);
      font-family: var(--fb);
      transition: all 0.2s
    }

    .zb:hover,
    .zb.active {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--navy)
    }

    .mcount {
      font-size: 12.5px;
      color: var(--text-l);
      white-space: nowrap
    }

    .mcount strong {
      color: var(--navy)
    }

    @media(max-width:580px) {
      .sfbar {
        flex-direction: column
      }
    }

    /* ===== ADD MEMBER FORM ===== */
    .form-container {
      max-width: 840px;
      margin: 0 auto;
      padding: 36px 20px
    }

    .form-progress {
      display: flex;
      background: #fff;
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(30, 42, 56, 0.06);
      margin-bottom: 36px
    }

    .fp-step {
      flex: 1;
      padding: 15px 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      border-right: 1px solid var(--border);
      border: none;
      background: transparent;
      font-family: var(--fb)
    }

    .fp-step:not(:last-child) {
      border-right: 1px solid var(--border)
    }

    .fp-step.active {
      background: var(--navy)
    }

    .fp-step.done {
      background: rgba(212, 175, 55, 0.08)
    }

    .fp-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.09);
      margin: 0 auto 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text-l)
    }

    .fp-step.active .fp-num,
    .fp-step.done .fp-num {
      background: var(--gold);
      color: var(--navy)
    }

    .fp-lbl {
      font-size: 10.5px;
      color: var(--text-l);
      font-weight: 500
    }

    .fp-step.active .fp-lbl {
      color: var(--gold)
    }

    .fsec {
      display: none
    }

    .fsec.active {
      display: block
    }

    .fcard {
      background: #fff;
      border-radius: var(--r);
      padding: 28px;
      margin-bottom: 20px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 14px rgba(30, 42, 56, 0.06)
    }

    .fcard-title {
      font-family: var(--fh);
      font-size: 17px;
      color: var(--navy);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 9px
    }

    .fcard-title i {
      color: var(--gold)
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-bottom: 18px
    }

    .frow.full {
      grid-template-columns: 1fr
    }

    @media(max-width:580px) {
      .frow {
        grid-template-columns: 1fr
      }

      .fp-lbl {
        display: none
      }
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 5px
    }

    .fg label {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.4px;
      text-transform: uppercase
    }

    .fg label span {
      color: var(--red)
    }

    .fc {
      padding: 11px 13px;
      border: 2px solid rgba(0, 0, 0, 0.07);
      border-radius: 7px;
      font-family: var(--fb);
      font-size: 13.5px;
      color: var(--text);
      background: var(--cream);
      transition: border 0.2s;
      width: 100%
    }

    .fc:focus {
      outline: none;
      border-color: var(--gold);
      background: #fff
    }

    .fc.err {
      border-color: var(--red)
    }

    .ferr {
      font-size: 11px;
      color: var(--red);
      margin-top: 2px
    }

    .upload-zone {
      border: 2px dashed var(--border);
      border-radius: 7px;
      padding: 22px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      background: var(--cream)
    }

    .upload-zone:hover {
      border-color: var(--gold);
      background: rgba(212, 175, 55, 0.04)
    }

    .upload-zone i {
      font-size: 26px;
      color: var(--gold);
      display: block;
      margin-bottom: 7px
    }

    .upload-zone p {
      font-size: 12.5px;
      color: var(--text-l)
    }

    .upload-zone small {
      font-size: 11px;
      color: var(--text-l)
    }

    .fnav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 22px
    }

    /* ===== SUCCESS ===== */
    .succ-card {
      background: #fff;
      border-radius: var(--r);
      padding: 44px 28px;
      text-align: center;
      max-width: 460px;
      margin: 0 auto;
      box-shadow: var(--shadow);
      border: 2px solid var(--border)
    }

    .succ-icon {
      font-size: 60px;
      color: #25D366;
      display: block;
      margin-bottom: 18px
    }

    .succ-card h2 {
      font-family: var(--fh);
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 10px
    }

    .succ-card p {
      color: var(--text-l);
      font-size: 14px;
      line-height: 1.75;
      margin-bottom: 22px
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.65);
      padding: 56px 20px 0;
      border-top: 3px solid var(--gold)
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 44px
    }

    @media(max-width:860px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:500px) {
      .footer-inner {
        grid-template-columns: 1fr
      }
    }

    .f-logo {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 15px
    }

    .f-logo-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--navy)
    }

    .f-logo-title {
      font-family: var(--fh);
      color: var(--gold);
      font-size: 17px;
      font-weight: 700;
      display: block
    }

    .f-logo-sub {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.38);
      display: block
    }

    .f-desc {
      font-size: 12.5px;
      line-height: 1.85;
      margin-bottom: 18px;
      max-width: 270px
    }

    .f-social {
      display: flex;
      gap: 9px
    }

    .f-sb {
      width: 34px;
      height: 34px;
      border-radius: 7px;
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: all 0.2s;
      cursor: pointer;
      text-decoration: none;
      border: none
    }

    .f-sb:hover {
      background: var(--gold);
      color: var(--navy)
    }

    .f-col h4 {
      font-family: var(--fh);
      color: var(--gold);
      font-size: 13px;
      margin-bottom: 18px
    }

    .f-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px
    }

    .f-links li button {
      color: rgba(255, 255, 255, 0.55);
      font-size: 12.5px;
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--fb);
      transition: color 0.2s;
      padding: 0
    }

    .f-links li button:hover {
      color: var(--gold)
    }

    .f-ci {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin-bottom: 11px;
      font-size: 12.5px
    }

    .f-ci i {
      color: var(--gold);
      margin-top: 2px;
      flex-shrink: 0
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding: 18px 20px;
      text-align: center;
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.32);
      max-width: 1280px;
      margin: 36px auto 0
    }

    /* ===== FLOAT WA ===== */
    .float-wa {
      position: fixed;
      bottom: 26px;
      right: 26px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 27px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      cursor: pointer;
      text-decoration: none;
      animation: wa-pulse 2s infinite
    }

    .float-wa:hover {
      transform: scale(1.1)
    }

    @keyframes wa-pulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5)
      }

      50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, 0.8)
      }
    }

    /* ===== MODAL ===== */
    .modal-ov {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      backdrop-filter: blur(5px)
    }

    .modal-ov.open {
      display: flex
    }

    .modal-img {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5)
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      background: #fff;
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 17px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy)
    }

    /* ===== TOAST ===== */
    .toast {
      position: fixed;
      bottom: 96px;
      right: 26px;
      z-index: 3000;
      background: var(--navy);
      color: #fff;
      padding: 13px 18px;
      border-radius: 9px;
      font-size: 13.5px;
      border-left: 4px solid var(--gold);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      transform: translateY(18px);
      opacity: 0;
      transition: all 0.3s;
      pointer-events: none;
      max-width: 290px
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1
    }

    /* ===== MISC ===== */
    .empty-state {
      text-align: center;
      padding: 56px 20px;
      color: var(--text-l)
    }

    .empty-state i {
      font-size: 44px;
      color: var(--border);
      display: block;
      margin-bottom: 14px
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(26px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-20px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }
.sig-box {
    text-align: center;
}
.sig-box img {
    width: 70px;
    height: auto;
    display: block;
    margin: 0 auto;
}
