@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Outfit:wght@400;500;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

  :root {
    --gold: #F2D27A;
    --gold-soft: #ffeab0;
    --navy: #05050A;
    --navy-2: #0B0B13;
    --navy-glass: rgba(15, 15, 25, 0.6);
    --navy-glass-light: rgba(30, 30, 45, 0.4);
    --ink: #F0F0F5;
    --muted: #A0A0B8;
    --display: 'Outfit', system-ui, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    
    --primary-gradient: linear-gradient(135deg, var(--gold), #D4AF37);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  }

  body {
    background: radial-gradient(circle at 50% 0%, #151525 0%, var(--navy) 100%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: var(--body);
    min-height: 100vh;
    padding: 0 0 60px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
  }
  
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

  /* ------------------- Typography ------------------- */
  header { text-align: center; margin: 30px 0 24px; }
  header .kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
  header h1 { font-family: var(--display); font-weight: 900; font-size: 32px; color: #fff; letter-spacing: -0.02em; margin: 8px 0 6px; }
  header p { color: var(--muted); font-size: 15px; font-weight: 400; }

  /* ------------------- Glass Surfaces ------------------- */
  .glass-panel {
    background: var(--navy-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
  }

  /* ------------------- Video Player ------------------- */
  #watch {
    position: relative; width: 100%; aspect-ratio: 16/9; background: #000;
    overflow: hidden; border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
    container-type: inline-size;
  }
  #broadcast { 
    position: absolute; inset: 0; width: 100%; height: 100%; 
    background: #040914; z-index: 0;
  }
  
  #broadcast::before, #broadcast::after {
    content: "";
    position: absolute;
    inset: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(60, 255, 140, 0.65), transparent 45%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.55), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(130, 80, 255, 0.7), transparent 55%);
    filter: blur(30px);
    animation: aurora-flow 8s infinite linear;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
  }

  #broadcast::after {
    background: radial-gradient(circle at 30% 70%, rgba(60, 160, 255, 0.65), transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(100, 255, 180, 0.55), transparent 50%);
    animation-duration: 12s;
    animation-direction: reverse;
  }
  
  @keyframes aurora-flow {
    0% { transform: rotate(0deg) translate(0, 0) scale(1); }
    33% { transform: rotate(120deg) translate(15%, -10%) scale(1.3); }
    66% { transform: rotate(240deg) translate(-10%, 15%) scale(1.4); }
    100% { transform: rotate(360deg) translate(0, 0) scale(1); }
  }
  /* Grid Layout for Participants */
  #seatcams {
    position: absolute; inset: 0; z-index: 4; pointer-events: auto;
    display: grid; gap: 16px; padding: 16px;
    transition: all 0.3s ease;
  }
  body.presenting #seatcams {
    left: auto; width: 30%; border-left: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
    grid-template-columns: 1fr !important; /* Stack vertically when presenting */
    overflow-y: auto;
  }
  
  .vcam-wrapper {
    position: relative; width: 100%; height: 100%; min-height: 120px; border-radius: 12px; overflow: hidden;
    background: #0a0a10; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  }
  
  .vcam-wrapper video {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2;
  }
  
  .vcam-fallback {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; background: #0f1015;
    color: #fff; gap: 12px; z-index: 1;
  }
  
  .vcam-avatar {
    width: 64px; height: 64px; border-radius: 50%; background: #1a1a24;
    display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold;
    color: var(--gold); border: 2px solid var(--gold); box-shadow: 0 0 15px rgba(242, 210, 122, 0.2);
  }
  
  .vcam-label {
    position: absolute; bottom: 12px; left: 12px; background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 6px; font-size: 13px;
    font-weight: 600; color: #fff; z-index: 3; border: 1px solid rgba(255,255,255,0.1);
    font-family: var(--display); display: flex; align-items: center; gap: 6px;
  }

  #presentation-widget {
    position: absolute; z-index: 10; 
    top: 16px; left: 16px; bottom: 16px; right: calc(30% + 32px); width: auto; 
    background: linear-gradient(180deg, #0F1B3E, #0B1430); 
    border: 1px solid rgba(212,175,55,0.3); border-radius: 16px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
    flex-direction: column; overflow: hidden;
  }
  #presentation-content {
    flex: 1; padding: 32px; display: flex; flex-direction: column; 
    align-items: center; justify-content: center; overflow-y: auto;
  }
  
  .pres-wrap { width: 100%; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; height: 100%; text-align: left; }
  .pres-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
  .pres-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(212,175,55,0.1); border: 2px solid #D4AF37; display: flex; align-items: center; justify-content: center; color: #D4AF37; box-shadow: 0 0 15px rgba(212,175,55,0.2); }
  .pres-icon svg { width: 32px; height: 32px; }
  .pres-title { font-size: 24px; font-family: var(--display); font-weight: 900; color: white; margin: 0; }
  .pres-tags { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
  .pres-code { font-family: var(--mono); color: #D4AF37; background: rgba(212,175,55,0.15); border: 1px solid #9b8330; padding: 4px 12px; border-radius: 4px; font-size: 14px; }
  .pres-advocate { font-size: 14px; font-family: var(--mono); color: #9AA3BE; display: flex; align-items: center; gap: 6px; }
  .pres-advocate svg { width: 16px; height: 16px; color: #cf5a4e; }
  .pres-body { flex: 1; overflow-y: auto; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.5); }
  .pres-body p { color: #F0F0F5; font-size: 18px; line-height: 1.6; margin: 0; }
  
  .pres-lb-title { font-size: 24px; font-family: var(--display); font-weight: 900; color: #D4AF37; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 12px; }
  .pres-lb-title svg { width: 32px; height: 32px; color: #D4AF37; }
  .pres-lb-title.white { color: white; }
  .pres-lb-list { flex: 1; overflow-y: auto; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.5); }
  .pres-row { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pres-row-left { display: flex; align-items: center; gap: 16px; }
  .pres-rank { width: 32px; text-align: center; font-size: 20px; }
  .pres-row-title { font-weight: bold; color: white; font-size: 18px; }
  .pres-row-sub { font-family: var(--mono); font-size: 12px; color: #9b8330; text-transform: uppercase; }
  .pres-score-votes { font-family: var(--mono); color: #D4AF37; font-weight: bold; font-size: 20px; background: rgba(212,175,55,0.1); padding: 6px 16px; border-radius: 8px; border: 1px solid #9b8330; }
  .pres-score-power { font-family: var(--mono); color: #5cc274; font-weight: bold; font-size: 20px; background: rgba(92,194,116,0.1); padding: 6px 16px; border-radius: 8px; border: 1px solid #5cc274; }
  .pres-score-label { font-size: 12px; }
  .pres-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(15,27,62,0.8); border: 1px solid #D4AF37; display: flex; align-items: center; justify-content: center; color: #D4AF37; font-weight: bold; }

  @container (max-width: 800px) {
    #presentation-widget {
      top: 0; left: 0; bottom: 0; width: 100%; right: auto; 
      border-radius: 0; border: none; z-index: 20;
    }
    body.presenting #seatcams {
      display: none !important;
    }
    #presentation-content { padding: 16px; }
    .pres-head { margin-bottom: 16px; gap: 12px; }
    .pres-icon { width: 48px; height: 48px; }
    .pres-icon svg { width: 24px; height: 24px; }
    .pres-title { font-size: 18px; }
    .pres-code { font-size: 12px; padding: 2px 8px; }
    .pres-advocate { font-size: 12px; }
    .pres-body { padding: 16px; }
    .pres-body p { font-size: 14px; }
    
    .pres-lb-title { font-size: 18px; margin-bottom: 16px; gap: 8px; }
    .pres-lb-title svg { width: 24px; height: 24px; }
    .pres-row { padding: 12px; }
    .pres-row-left { gap: 10px; }
    .pres-rank { width: 24px; font-size: 16px; }
    .pres-row-title { font-size: 15px; }
    .pres-row-sub { font-size: 10px; }
    .pres-score-votes, .pres-score-power { font-size: 14px; padding: 4px 10px; }
    .pres-score-label { font-size: 10px; }
    .pres-avatar { width: 32px; height: 32px; font-size: 12px; }
  }
  #watch #v-scoreboard { z-index: 3; }

  /* ------------------- Badges & Strips ------------------- */
  .wstatus {
    display: inline-flex; align-items: center; margin: 20px 0 12px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
    color: var(--muted); background: var(--navy-glass); border: var(--glass-border);
    border-radius: 999px; padding: 6px 14px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .wstatus .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #ff4a4a; margin-right: 8px; box-shadow: 0 0 10px #ff4a4a; }
  .wstatus.live .dot { background: #10B981; box-shadow: 0 0 12px rgba(16, 185, 129, 0.6); }
  .wstatus.live { color: #10B981; border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.05); }
  body.gated .wstatus { display: none; }

  #statestrip {
    display: flex; gap: 16px; align-items: center; justify-content: space-between;
    flex-wrap: wrap; margin: 16px 0 12px; padding: 16px 20px;
  }
  #statestrip .cell { display: flex; flex-direction: column; gap: 4px; }
  #statestrip .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  #statestrip .v { font-family: var(--display); font-weight: 700; font-size: 18px; color: #fff; }
  #statestrip .phase .v { color: var(--gold); }

  /* ------------------- Mint Gate ------------------- */
  .gate-decl {
    text-align: center; margin: 10px 0 24px; padding: 24px;
    background: linear-gradient(180deg, rgba(242, 210, 122, 0.08) 0%, transparent 100%);
    border: 1px solid rgba(242, 210, 122, 0.15); border-radius: 16px;
  }
  .gate-decl .gd-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
  .gate-decl .gd-title { font-family: var(--display); font-weight: 700; font-size: 24px; color: #fff; letter-spacing: -0.01em; margin: 8px 0 6px; }
  .gate-decl .gd-sub { font-family: var(--body); font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 600px; margin: 0 auto; }

  .region { display: flex; gap: 10px; justify-content: center; margin: 16px 0 24px; }
  .region button {
    font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.04em;
    color: var(--muted); background: var(--navy-glass); border: var(--glass-border);
    border-radius: 999px; padding: 10px 20px; cursor: pointer; transition: all 0.2s ease;
  }
  .region button.on { color: var(--navy); background: var(--primary-gradient); border-color: transparent; font-weight: 700; box-shadow: 0 4px 15px rgba(242, 210, 122, 0.3); }

  .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
  
  .tier {
    text-align: left; cursor: pointer; border-radius: 16px; padding: 20px;
    background: var(--navy-glass-light); border: var(--glass-border); color: var(--ink);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
  }
  .tier::before {
    content: ''; position: absolute; inset: 0; background: var(--primary-gradient); opacity: 0; transition: opacity 0.3s ease; z-index: -1;
  }
  .tier:hover { transform: translateY(-4px); border-color: rgba(242, 210, 122, 0.4); box-shadow: 0 12px 30px rgba(0,0,0,0.4); background: var(--navy-glass); }
  .tier.sel { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 15px 35px rgba(0,0,0,0.5); background: rgba(242, 210, 122, 0.05); }
  .tier .nm { font-family: var(--display); font-weight: 700; font-size: 18px; color: #fff; }
  .tier.sel .nm { color: var(--gold); }
  .tier .pr { font-family: var(--mono); font-size: 14px; color: var(--muted); margin-top: 6px; }
  .tier .tag { font-size: 11px; color: var(--gold-soft); margin-top: 10px; font-weight: 500; opacity: 0.7; }

  /* ------------------- Forms ------------------- */
  .form-card { margin-top: 24px; padding: 24px; }
  .form-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
  .form-fld { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 200px; }
  .form-fld label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
  .form-fld input { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; padding: 12px 16px; font-family: var(--body); font-size: 14px; transition: border-color 0.2s ease; }
  .form-fld input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(242, 210, 122, 0.2); }

  button.primary {
    width: 100%; padding: 16px; border: 0; border-radius: 12px; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: 0.02em;
    background: var(--primary-gradient); cursor: pointer; transition: all 0.2s ease; box-shadow: 0 8px 25px rgba(242, 210, 122, 0.25);
  }
  button.primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(242, 210, 122, 0.35); filter: brightness(1.1); }
  button.primary:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

  /* ------------------- Interactive Dock ------------------- */
  #dock { display: flex; flex-direction: column; margin-top: 24px; overflow: hidden; }
  .dock-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dock-tab { flex: 1; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--muted); background: transparent; border: 0; padding: 16px 12px; cursor: pointer; text-align: center; transition: color 0.2s ease; border-bottom: 2px solid transparent; }
  .dock-tab:hover { color: #fff; }
  .dock-tab.on { color: var(--gold); border-bottom-color: var(--gold); background: linear-gradient(180deg, transparent, rgba(242, 210, 122, 0.05)); }
  .dock-panel { display: none; padding: 20px; min-height: 250px; }
  .dock-panel.on { display: block; animation: fadeIn 0.3s ease; }

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

  /* ------------------- Dock Content ------------------- */
  .vlane { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
  .vl-top { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 600; font-size: 14px; }
  .vl-name { color: #fff; }
  .vl-wt { color: var(--gold); font-family: var(--mono); }
  .vl-bar { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
  .vl-fill { height: 100%; background: var(--primary-gradient); border-radius: 4px; transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

  .chat-feed { max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent; }
  .chat-msg { font-size: 14px; line-height: 1.5; color: #E2E8F0; background: rgba(255,255,255,0.03); padding: 10px 14px; border-radius: 12px; border-bottom-left-radius: 4px; }
  .cm-who { font-family: var(--display); font-weight: 700; color: var(--gold); margin-right: 6px; }
  .chat-composer { display: flex; gap: 10px; }
  .chat-composer input { flex: 1; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; padding: 12px 16px; font-family: var(--body); }
  .chat-composer input:focus { outline: none; border-color: var(--gold); }
  .chat-composer button { background: var(--navy); color: #fff; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 0 20px; font-weight: 600; font-family: var(--display); cursor: pointer; transition: all 0.2s ease; }
  .chat-composer button:hover:not(:disabled) { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

  .remint-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; margin-top: 16px; }
  .remint-tile { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px; text-align: center; cursor: pointer; transition: all 0.2s ease; }
  .remint-tile:hover { border-color: var(--gold); background: rgba(242, 210, 122, 0.05); transform: translateY(-2px); }
  .remint-tile .nm { font-family: var(--display); font-weight: 700; font-size: 13px; color: #fff; }
  .remint-tile .pr { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 6px; }

  /* ------------------- Floating Reactions ------------------- */
  #rx-floats { position: absolute; inset: 0; pointer-events: none; z-index: 10; overflow: hidden; }
  .rx-float { position: absolute; bottom: 10px; font-size: 28px; animation: rxFloat 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); }
  .rx-float .who { font-size: 10px; font-family: var(--display); font-weight: 700; color: #fff; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); border-radius: 999px; padding: 3px 8px; margin-top: 6px; border: 1px solid rgba(255,255,255,0.1); }
  @keyframes rxFloat {
    0% { transform: translateY(0) scale(0.4); opacity: 0; }
    15% { opacity: 1; transform: translateY(-40px) scale(1.1); }
    25% { transform: translateY(-70px) scale(1); }
    100% { transform: translateY(-400px) scale(0.9); opacity: 0; }
  }

  .rx-bar { display: flex; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
  .rx-bar button { font-size: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; width: 48px; height: 48px; cursor: pointer; transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); display: flex; align-items: center; justify-content: center; }
  .rx-bar button:hover { transform: scale(1.15) translateY(-4px); border-color: var(--gold); background: rgba(242, 210, 122, 0.1); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }

  /* ------------------- State Management ------------------- */
  body.gated #mint-gate { display: block; }
  body.gated #waiting-screen, body.gated #watch-surface, body.gated #statestrip { display: none; }
  
  body.waiting #waiting-screen { display: block; animation: fadeIn 0.5s ease; }
  body.waiting #mint-gate, body.waiting #watch-surface, body.waiting #statestrip { display: none; }

  body.live #watch-surface { display: block; animation: fadeIn 0.5s ease; }
  body.live #statestrip { display: flex; animation: fadeIn 0.5s ease; }
  body.live #mint-gate, body.live #waiting-screen { display: none; }

  @keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(242, 210, 122, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(242, 210, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 210, 122, 0); }
  }
/* TikTok Layout Tweaks */
#watch-surface {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  display: none;
}
#watch {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto !important;
}
#statestrip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  margin: 0;
  padding: 16px;
}
.fab-container {
  position: absolute;
  right: 16px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}
.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.tiktok-modal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background: #111;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tiktok-modal.open {
  transform: translateY(0);
}
.modal-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.modal-title {
  color: #fff;
  font-weight: bold;
}
.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.modal-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}
