@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@300;500&display=swap");

/* ========================================================
   0. 変数定義（ライト/ダーク共通）
   ======================================================== */
:root {
    --bg-color: #f5f5f7;
    --card-bg: #ffffff;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --input-bg: #fbfbfd;
    --border-color: #d2d2d7;
    --link-color: #0071e3;
    /* Corner/border tokens: 全体をシャープ寄りに統一 */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 999px;
    --border-width: 1px;
}

[data-theme="dark"] {
    --bg-color: #000000;
    --card-bg: #1c1c1e;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --input-bg: #2c2c2e;
    --border-color: #48484a;
    --link-color: #2997ff;
}

/* ========================================================
   1. 共通・基本レイアウト（拡大防止・サイズ適正化）
   ======================================================== */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 14px; /* 全体の基準を下げて巨大化を抑制 */
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, "SF Pro Display", sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
}

/* カードの最大幅を適正化 */
.card {
    position: relative;
    width: 90%;
    max-width: 400px; /* 480から400へ：デカすぎ防止 */
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 32px;      /* 50から32へ */
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    transition: background 0.4s ease;
}

/* ショップ等のグリッド：横に並ぶように最小幅を調整 */
.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* 260から220へ：3枚並びやすく */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 80px auto 0; /* ヘッダー分を確保 */
}

/* ========================================================
   2. フォームUI
   ======================================================== */
h1 {
    font-size: 24px; /* 26から24へ */
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

label {
    display: block;
    font-size: 13px; /* 14から13へ */
    font-weight: 600;
    margin-bottom: 8px;
}

input {
    display: block;
    width: 100%;
    padding: 14px; /* 16から14へ */
    margin-bottom: 18px;
    border-radius: var(--radius-md);
    border: var(--border-width) solid var(--border-color);
    font-size: 16px; /* 入力時の勝手なズームを防ぐため16pxを維持 */
    outline: none;
    background: var(--input-bg);
    color: var(--text-primary);
    transition: all 0.4s ease;
}

button {
    width: 100%;
    padding: 16px; /* 18から16へ */
    border-radius: var(--radius-lg);
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

button:active { transform: translateY(0) scale(0.98); }
button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.terms-btn { background: #10b981; color: white; margin-bottom: 15px; }
.primary { background: #0071e3; color: white; margin-bottom: 12px; }
.secondary { background: #f5d94e; color: #1d1d1f; }

.sub-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
    color: var(--text-secondary);
}

.footer a { color: var(--link-color); text-decoration: none; }

/* ========================================================
   3. 背景・特殊設定
   ======================================================== */
.bg-fixed { position: fixed; inset: 0; z-index: -1; }
.container.wide-layout { display: block !important; }

/* ========================================================
   4. 狭いビューポート：ガイダンス（幅 1025px 未満）
   ======================================================== */
.mobile-lock-overlay {
    display: none !important;
}

.mobile-lock-inner {
    max-width: min(420px, 92vw);
    margin: 0 auto;
    padding: 2.25rem 1.75rem 2rem;
    border-radius: var(--radius-xl);
    background: var(--card-bg);
    border: var(--border-width) solid rgba(128, 128, 128, 0.14);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 24px 64px rgba(0, 0, 0, 0.08);
    text-align: center;
    box-sizing: border-box;
}

[data-theme="dark"] .mobile-lock-inner {
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.35),
        0 24px 64px rgba(0, 0, 0, 0.45);
}

.mobile-lock-brand {
    font-family: "Cinzel", "Times New Roman", serif;
    font-size: clamp(1.35rem, 4.2vw, 1.85rem);
    font-weight: 300;
    letter-spacing: 0.14em;
    color: var(--text-primary);
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.mobile-lock-beta {
    font-size: 0.55em;
    font-weight: 500;
    letter-spacing: 0.06em;
    vertical-align: super;
    margin-left: 0.15em;
    opacity: 0.85;
}

.mobile-lock-rule {
    width: 40px;
    height: 2px;
    margin: 1rem auto 1.15rem;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--link-color), transparent);
    opacity: 0.45;
}

.mobile-lock-lead {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin: 0 0 0.85rem;
    line-height: 1.45;
}

.mobile-lock-detail {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

.mobile-lock-detail strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* 鍵アイコン（パスロックUI用） */
.lock-icon {
    position: relative;
    width: 24px;
    height: 18px;
    background-color: var(--accent, #ff005c); /* QUESTのアクセントカラー */
    border-radius: 3px;
    margin-top: 12px; /* ツルの部分のスペースを確保 */
}

/* 鍵の「ツル」の部分 */
.lock-icon::before {
    content: "";
    position: absolute;
    left: 4px;
    top: -10px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--accent, #ff005c);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    box-sizing: border-box;
}

/* 鍵穴のドット（お好みで） */
.lock-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 6px;
    background-color: #000;
    border-radius: 2px;
}

@media screen and (max-width: 1024px) {
    .mobile-lock-overlay {
        display: flex !important;
        position: fixed;
        inset: 0;
        z-index: 999999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: max(20px, env(safe-area-inset-top))
            max(20px, env(safe-area-inset-right))
            max(20px, env(safe-area-inset-bottom))
            max(20px, env(safe-area-inset-left));
        box-sizing: border-box;
        background:
            radial-gradient(ellipse 100% 60% at 50% -10%, rgba(0, 113, 227, 0.09), transparent 55%),
            var(--bg-color);
    }

    [data-theme="dark"] .mobile-lock-overlay {
        background:
            radial-gradient(ellipse 100% 60% at 50% -10%, rgba(41, 151, 255, 0.12), transparent 55%),
            var(--bg-color);
    }

    body > *:not(.mobile-lock-overlay) {
        display: none !important;
    }
}

/* ========================================================
   5. 共通ヘッダー（既存ロジック維持）
   ======================================================== */
header {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 64px;
    background: var(--card-bg); 
    border-bottom: var(--border-width) solid var(--border-color);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 30px;
    z-index: 10000;
    transition: background 0.4s ease, border-color 0.4s ease;
}

header a, header span, header div { color: var(--text-primary); transition: color 0.4s ease; }

@supports (backdrop-filter: blur(20px)) {
    header {
        background: var(--card-bg); 
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
    }
}

/* ========================================================
   6. メインヘッダー（common-header 注入フラグメント用）
   ======================================================== */
#common-header {
    width: 100%;
    min-height: 68px;
    background: var(--card-bg);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border-bottom: var(--border-width) solid rgba(128, 128, 128, 0.12);
    position: sticky;
    top: 0;
    z-index: 10000;
    display: block;
}

#common-header .header-inner {
    width: 96%;
    max-width: 1190px;
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 0 12px;
    box-sizing: border-box;
}

#common-header .logo {
    cursor: pointer;
    line-height: 1.2;
}

#common-header .logo-text {
    font-family: "Cinzel", serif;
    font-size: 26px;
    font-weight: 200;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    display: flex;
    align-items: baseline;
    gap: 7px;
    white-space: nowrap;
}

#common-header .logo-text .beta {
    font-size: 12px;
    font-family: -apple-system, sans-serif;
    font-weight: 700;
}

#common-header .user-profile {
    display: flex;
    align-items: flex-end;
    gap: 13px;
    line-height: 1;
}

/* 表示名と @handle を 1 行に（14 インチ MacBook 等で 2 段にならない） */
#common-header .user-name-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 5px;
    max-width: min(289px, 36vw);
    min-width: 0;
    padding-bottom: 2px;
}

#common-header .user-name {
    font-size: 10px;
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1 1 auto;
}

#common-header .header-handle {
    font-size: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

#common-header .header-handle:empty {
    display: none;
}

#common-header .main-header-user-block {
    position: relative;
    display: flex;
    align-items: flex-end;
}

#common-header .user-avatar.main-header-avatar-btn {
    width: 22px;
    height: 22px;
    padding: 0;
    margin: 0 0 -1px 0;
    border: none;
    background: #0071e3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#common-header .user-avatar.main-header-avatar-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 2px 10px rgba(0, 113, 227, 0.35);
}

#common-header .user-avatar.main-header-avatar-btn:focus-visible {
    outline: 2px solid var(--link-color);
    outline-offset: 2px;
}

#common-header .user-avatar img.header-avatar-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: none;
}

#common-header .user-avatar img.header-avatar-img.is-visible {
    display: block;
}

#common-header .user-avatar .header-avatar-fallback {
    position: relative;
    z-index: 1;
}

#common-header .user-avatar img.header-avatar-img.is-visible ~ .header-avatar-fallback {
    display: none;
}

/* Subheader avatar tone classes (general/official/admin/super_admin). */
.user-avatar.tone-general,
.user-avatar.user-avatar-img.tone-general {
  border-color: rgba(41, 151, 255, 0.95) !important;
  box-shadow: 0 0 0 2px rgba(41, 151, 255, 0.3);
}
.user-avatar.tone-official,
.user-avatar.user-avatar-img.tone-official {
  border-color: rgba(255, 214, 10, 0.95) !important;
  box-shadow: 0 0 0 2px rgba(255, 214, 10, 0.28);
}
.user-avatar.tone-admin,
.user-avatar.user-avatar-img.tone-admin {
  border-color: rgba(255, 59, 48, 0.95) !important;
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.3);
}
.user-avatar.tone-super-admin,
.user-avatar.user-avatar-img.tone-super-admin {
  border-color: rgba(191, 90, 242, 0.95) !important;
  box-shadow: 0 0 0 2px rgba(191, 90, 242, 0.3);
}

#common-header .main-header-user-menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    min-width: 187px;
    padding: 5px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 10050;
}

[data-theme="dark"] #common-header .main-header-user-menu {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

#common-header .main-header-user-menu[hidden] {
    display: none !important;
}

#common-header .main-header-menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    margin: 0;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease;
}

#common-header .main-header-menu-item:hover {
    background: var(--input-bg);
}

#common-header .main-header-menu-icon {
    width: 1.2em;
    text-align: center;
    opacity: 0.85;
}

#common-header .main-header-menu-item--logout {
    color: var(--text-secondary);
    margin-top: 2px;
    padding-top: 10px;
    border-top: var(--border-width) solid rgba(128, 128, 128, 0.15);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

#common-header .main-header-menu-item--logout:hover {
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.06);
}

#common-header .main-header-menu-item--link {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

#common-header .main-header-menu-item--link:hover {
    color: var(--link-color);
}

#common-header .main-header-menu-section[hidden] {
    display: none !important;
}

#common-header .theme-toggle {
    position: relative;
    width: 44px;
    height: 27px;
    cursor: pointer;
    display: block;
    margin-bottom: -1px;
    /* スイッチ本体より当たり判定を広くして押しやすくする */
    padding: 4px;
    box-sizing: border-box;
}

#common-header .theme-toggle input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

#common-header .theme-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #ccc;
    border-radius: var(--radius-pill);
    transition: 0.2s;
    pointer-events: none;
}

#common-header .theme-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 17px;
    height: 17px;
    background: #fff;
    border-radius: var(--radius-pill);
    transition: 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#common-header #themeToggle:checked + .theme-slider {
    background: #34c759;
}

#common-header #themeToggle:checked + .theme-slider .theme-knob {
    transform: translateX(17px);
}

[data-theme="dark"] #common-header .theme-slider {
    background: rgba(255, 255, 255, 0.2);
}

#common-header .cart-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    margin-bottom: -2px;
}

#common-header .cart-count {
    position: absolute;
    top: -1px;
    right: -5px;
    background: #ff3b30;
    color: white;
    font-size: 7px;
    font-weight: 800;
    min-width: 11px;
    height: 11px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-width) solid var(--card-bg);
}

/* Account switcher モーダル（土台） */
.main-header-account-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.main-header-account-modal[hidden] {
    display: none !important;
}

.main-header-account-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.main-header-account-modal-card {
    position: relative;
    max-width: 360px;
    width: 100%;
    padding: 24px;
    border-radius: var(--radius-xl);
    background: var(--card-bg);
    border: var(--border-width) solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.main-header-account-modal-card h2 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.main-header-account-modal-card p {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.main-header-account-modal-close {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--input-bg);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}

.main-header-account-modal-close:hover {
    background: var(--border-color);
}

/* ========================================================
   公式／一般サーフェス: グリッドカード直下の作者・メタ行
   ofr.html / general.html 共通（COMMUNITY TOPICS・ROOMS 等）
   ======================================================== */
.topic-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.topic-card-wrap > .room-card {
    width: 100%;
}

.topic-card-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--link-color);
    margin-top: 6px;
    text-decoration: none;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
}

.topic-card-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.2);
    background: var(--input-bg);
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-primary);
}

.topic-card-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.topic-card-author-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-card-author:hover {
    text-decoration: underline;
}

/* ルームトピックカード: ルームオーナー（親元）の MY NODE */
.topic-card-room-parent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 6px;
    font-size: 10px;
    font-weight: 800;
    margin-top: 4px;
    max-width: 100%;
    padding: 0 4px;
    text-align: center;
    line-height: 1.35;
    text-decoration: none;
    color: var(--link-color);
}

.topic-card-room-parent-label {
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.topic-card-room-parent-name {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.topic-card-room-parent:hover .topic-card-room-parent-name {
    opacity: 0.88;
}

[data-theme="dark"] .topic-card-author-avatar img {
    filter: brightness(1.12);
}

/* ========================================================
   鍵付きカード共通（トピック／ルーム・MY NODE／マイページで同じ見え方）
   ・未ロック: 各ページの通常カード
   ・ロック: タイトル＋（ルームはサムネ）＋作成者／メタ＋本文までは鮮明。投票・トピック一覧・フッタ等の下部だけぼかし＋鍵ゲート
   ・パスキー用のサムネを金枠にしない（会員限定の黄枠と混同しない）
   ======================================================== */
.post-card.post-card-locked {
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
}
.post-card.post-card-locked .official-tag {
    margin-bottom: 10px;
}
/* 鍵付き：タイトル・サムネ・作成者・本文は鮮明、下部ブロックのみぼかし */
.post-card.post-card-locked h2 {
    margin-bottom: 10px;
}
.post-card.topic-card.post-card-locked .pass-lock-stack {
    margin-top: 8px;
}
.pass-lock-stack {
    position: relative;
    flex: 1 1 auto;
    min-height: 120px;
    width: 100%;
}
.pass-lock-blur {
    filter: blur(12px);
    -webkit-filter: blur(12px);
    opacity: 0.68;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}
.pass-lock-gate {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    background: rgba(12, 12, 14, 0.28);
    border-radius: 16px;
    border: 1px solid rgba(128, 128, 128, 0.28);
}
.board-grid.is-list .post-card.pass-lock-full-span {
    grid-column: 1 / -1;
    max-width: 100%;
}
/* リスト＋鍵トピック：タイトル横🔐とゲート先頭の🔒が重複しないように */
.board-grid.is-list .post-card.post-card-locked .exclusive-gate-btn::before {
    content: none;
}
.exclusive-gate-btn {
    background: #1d1d1f;
    color: #fff;
    min-width: 190px;
    justify-content: center;
    padding: 9px 14px;
    width: auto !important;
    max-width: none !important;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    border: 1px solid #d4af37;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    pointer-events: auto;
    transition: 0.2s;
}
.exclusive-gate-btn::before {
    content: "🔒";
    font-size: 12px;
}
.exclusive-gate-btn span::after {
    content: "EXCLUSIVE MEMBER KEY";
}
.exclusive-gate-btn:hover {
    background: #d4af37;
    color: #000;
}
.exclusive-gate-btn:hover span::after {
    content: "PASS KEY";
}
.exclusive-unlock-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(300px, 82%);
    background: rgba(16, 16, 16, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: var(--radius-md);
    padding: 14px;
    color: #fff;
    z-index: 35;
    display: none;
    pointer-events: auto;
}
.exclusive-unlock-panel.is-open {
    display: block;
}
.exclusive-unlock-panel h4 {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #d4af37;
}
.exclusive-unlock-panel input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 13px;
}
.exclusive-unlock-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.exclusive-unlock-actions button {
    width: auto;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.exclusive-unlock-cancel {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}
.exclusive-unlock-submit {
    background: #d4af37;
    color: #111;
}
.exclusive-unlock-msg {
    min-height: 1.2em;
    margin: 8px 0 0;
    font-size: 12px;
    color: #ffb4b4;
}