/* ═══════════════════════════════════════════════════════
   retseJwolleY Portfolio — Clean Light Theme
   White / Black / Yellow  ·  3-color system
   Inter + Space Mono
═══════════════════════════════════════════════════════ */

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

:root {
    /* ── Core palette ── */
    --white:        #FFFFFF;
    --off-white:    #F7F7F7;
    --off-white2:   #F0F0F0;
    --ink:          #111111;
    --ink2:         #333333;
    --muted:        #999999;
    --muted-light:  #CCCCCC;
    --yellow:       #F5C800;       /* accent on dark surfaces */
    --yellow-dim:   rgba(245,200,0,0.15);
    --yellow-dim2:  rgba(245,200,0,0.08);
    --green:        #1A8A4A;
    --red:          #D93025;

    /* ── Borders ── */
    --border:       rgba(0,0,0,0.09);
    --border-soft:  rgba(0,0,0,0.05);

    /* ── Surfaces ── */
    --surface:      var(--white);
    --surface2:     var(--off-white);
    --surface3:     var(--off-white2);

    /* ── Fonts ── */
    --font-body:    'Inter', system-ui, sans-serif;
    --font-mono:    'Space Mono', monospace;
    --font-display: 'Inter', system-ui, sans-serif;

    /* ── Legacy aliases (JS untouched) ── */
    --gold:         var(--ink);          /* dark CTAs */
    --gold-light:   #444444;
    --gold-dim:     rgba(0,0,0,0.07);
    --gold-dim2:    rgba(0,0,0,0.04);
    --black:        var(--ink);
    --text:         var(--ink);
    --text-muted:   var(--muted);
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before { display: none; }

/* ══════════════════════════════════════════
   FLOATING DISCORD CONTACT
══════════════════════════════════════════ */
.floating-discord-contact {
    position: fixed;
    left: -128px;
    bottom: -196px;
    z-index: 210;
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
    
    width: clamp(270px, 30vw, 396px); 
    
    transform: translateX(-10px);
    opacity: 0;
    animation: discordContactIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
    
    transform-origin: left bottom; 
    will-change: transform, opacity, filter;

    pointer-events: none; 
}

.floating-discord-contact img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.08));
}

@keyframes discordContactIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
    .floating-discord-contact {
        display: none;
    }
}
/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.shell {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
    grid-column: 1 / -1;
    padding: 0 36px;
    height: 60px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header::after { display: none; }

.logo {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--ink);
    text-transform: uppercase;
}
.logo span { color: var(--muted); font-weight: 400; }

.header-right { display: flex; align-items: center; gap: 12px; }

.hamburger-btn {
    display: none;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}
.hamburger-btn:hover { border-color: var(--ink); color: var(--ink); }

.cart-bubble {
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; letter-spacing: 0.5px;
    color: var(--muted); cursor: pointer;
    padding: 7px 14px;
    border: 1px solid var(--border); border-radius: 999px;
    transition: all 0.15s ease;
    background: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
}
.cart-bubble:hover { border-color: var(--ink); color: var(--ink); }
.cart-bubble i { color: var(--ink); font-size: 12px; }

#cart-count {
    background: var(--ink); color: var(--white);
    font-weight: 700; font-size: 10px;
    border-radius: 100px; padding: 1px 7px; display: none;
}
#cart-count.has-items { display: inline; }

.visit-badge { display: none }
.visit-badge i { color: var(--ink); font-size: 10px; }
#count { color: var(--ink); font-weight: 700; }

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
.sidebar {
    background: var(--white);
    border-right: 1px solid var(--border);
    padding: 24px 12px;
    display: flex; flex-direction: column; gap: 2px;
    position: sticky; top: 60px;
    height: calc(100vh - 60px); overflow-y: auto;
    z-index: 10;
}
.sidebar::-webkit-scrollbar { width: 0; }

.mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 500; opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-label {
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted-light); padding: 14px 12px 6px;
    font-family: var(--font-body); font-weight: 600;
}
.nav-label:first-child { padding-top: 4px; }

.btn {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: none; border-radius: 10px;
    cursor: pointer; text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
}
.btn::before { display: none; }
.btn:hover { color: var(--ink); background: var(--off-white); }
.btn.active { color: var(--ink); background: var(--off-white2); font-weight: 700; }
.btn i, .btn span { position: relative; z-index: 1; }
.btn i { font-size: 13px; width: 16px; text-align: center; }

#toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 50px); /* Başlangıçta aşağıda gizli */
    background-color: #1a1a1a; /* Koyu tema renklerinle uyumlu */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #333333;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

#toast-notification.show {
    transform: translate(-50%, 0); /* Yukarı fırlayarak gelir */
    opacity: 1;
}
/* ══════════════════════════════════════════
   CONTENT AREA
══════════════════════════════════════════ */
.content-area {
    background: var(--off-white);
    padding: 40px 44px;
    min-height: calc(100vh - 60px);
    overflow-x: hidden;
}

.frame { display: none; }
.frame.active { display: block; animation: fadeUp 0.28s cubic-bezier(0.16,1,0.3,1); }

@keyframes fadeUp  { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
@keyframes cardIn  { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
.section-title {
    font-family: var(--font-body);
    font-size: 36px; font-weight: 800;
    letter-spacing: -1px; color: var(--ink); line-height: 1.1;
    margin-bottom: 6px;
}
.section-title span { color: var(--muted); font-weight: 400; }

.section-sub {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 36px;
    font-family: var(--font-mono);
}

.grid-label {
    font-family: var(--font-body); font-size: 13px; font-weight: 700;
    color: var(--muted); margin-bottom: 16px; margin-top: 40px;
    letter-spacing: 1.5px; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
}
.grid-label::after { content:''; flex:1; height:1px; background: var(--border); }

/* ══════════════════════════════════════════
   BIO
══════════════════════════════════════════ */
.bio-intro {
    font-size: 14px; line-height: 1.8; color: var(--ink2);
    max-width: 540px; margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.4s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.bio-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px;
    opacity: 0; animation: fadeUp 0.4s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.tag {
    font-size: 11px; letter-spacing: 0.5px;
    padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px;
    color: var(--ink2); background: var(--white);
    font-family: var(--font-body); font-weight: 600;
}

.tag-link {
    appearance: none;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.tag-link:hover {
    border-color: var(--ink);
    background: var(--off-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ══════════════════════════════════════════
   GAME CARDS
══════════════════════════════════════════ */
.games-grid { display: flex; flex-direction: column; gap: 14px; }

.game-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    opacity: 0; animation: cardIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
    display: flex; align-items: stretch;
}
.game-card:nth-child(1){animation-delay:.04s}
.game-card:nth-child(2){animation-delay:.08s}
.game-card:nth-child(3){animation-delay:.12s}
.game-card:nth-child(4){animation-delay:.16s}
.game-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }

.game-thumb-wrap { overflow: hidden; position: relative; flex: 0 0 320px; }
.game-thumb { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.35s ease; }
.game-card:hover .game-thumb { transform: scale(1.04); }

.game-play-overlay {
    position:absolute; inset:0; background:rgba(0,0,0,0.35);
    display:flex; align-items:center; justify-content:center;
    opacity:0; transition:opacity 0.2s ease;
}
.game-card:hover .game-play-overlay { opacity:1; }
.play-btn {
    width:46px; height:46px; border-radius:50%;
    background: var(--white); color: var(--ink);
    display:flex; align-items:center; justify-content:center;
    font-size:15px; text-decoration:none; transition:transform 0.15s ease;
}
.play-btn:hover { transform:scale(1.08); }

.game-info { padding: 24px 28px; display:flex; flex-direction:column; justify-content:center; gap:6px; flex:1; }
.game-name { font-family: var(--font-body); font-size:20px; font-weight:800; color:var(--ink); letter-spacing:-0.3px; }
.game-role { font-size:11px; color:var(--muted); letter-spacing:1.5px; text-transform:uppercase; font-weight:600; margin-top:2px; }
.game-desc { font-size:13px; color:var(--ink2); line-height:1.6; margin-top:10px; max-width:560px; }

.video-section { margin-top: 44px; }
.video-wrap {
    border-radius:16px; overflow:hidden; border:1px solid var(--border);
    margin-bottom:20px; aspect-ratio:16/6;
}
.video-wrap iframe { width:100%; height:100%; display:block; }

/* ══════════════════════════════════════════
   SMALL WORKS
══════════════════════════════════════════ */
.smallworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px; margin-top: 8px;
}
.sw-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    opacity: 0; animation: cardIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.sw-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.sw-video { width:100%; aspect-ratio:16/9; display:block; background:#111; outline:none; }
.sw-info {
    padding: 12px 16px; display:flex; align-items:center; gap:10px;
    border-top: 1px solid var(--border);
}
.sw-icon {
    width:26px; height:26px; border-radius:6px;
    background: var(--off-white); border: 1px solid var(--border);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.sw-icon i { font-size:11px; color:var(--ink); }
.sw-name { font-size:13px; font-weight:600; color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sw-empty { grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--muted); font-size:12px; }
.sw-empty i { font-size:24px; color:var(--muted-light); display:block; margin-bottom:10px; }
/* ─── FREE MODELS TAB ─────────────────────────────────────────── */
 
.fm-tab-intro {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(223,192,12,0.06);
    border: 1px solid rgba(223,192,12,0.18);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    margin-top: 4px;
}
 
.fm-tab-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
 
.fm-sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: var(--surface2, rgba(255,255,255,0.04));
    border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
    border-radius: 7px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.fm-sort-btn:hover {
    border-color: var(--border);
    color: var(--text);
}
 
/* Video group heading inside free-models tab */
.fm-video-group {
    margin-bottom: 32px;
}
.fm-video-group-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-soft, rgba(255,255,255,0.06));
}
.fm-video-group-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.fm-video-thumb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid var(--border-soft);
    border-radius: 5px;
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.fm-video-thumb-link:hover {
    border-color: rgba(255,0,0,0.4);
    color: #ff4444;
}
 
/* Sample list inside each video group */
.fm-sample-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 
/* Individual sample row — reuses sample-picker aesthetics */
.fm-sample-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface2, rgba(255,255,255,0.03));
    border: 1px solid var(--border-soft, rgba(255,255,255,0.06));
    border-radius: 10px;
    transition: border-color 0.2s ease;
}
.fm-sample-row:hover {
    border-color: var(--border, rgba(255,255,255,0.12));
}
.fm-sample-row-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 1;
}
.fm-sample-row-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
 
/* View counter badge */
.fm-view-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    border-radius: 5px;
    padding: 4px 9px;
    white-space: nowrap;
    min-width: 60px;
    justify-content: center;
}
.fm-view-count i {
    font-size: 9px;
    color: var(--gold);
}
 
/* Empty state */
.fm-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.fm-empty i {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.4;
}
/* ══════════════════════════════════════════
   SAMPLE BUTTON — LARGER VARIANT (below video)
   Add sw-sample-btn--lg to the button in JS
══════════════════════════════════════════ */

.sw-sample-btn--lg {
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 8px;
    gap: 7px;
    letter-spacing: 0.6px;
}

.sw-sample-btn--lg i {
    font-size: 11px;
}

/* Make the sw-info row wrap nicely when the button is larger */
.sw-info {
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 10px 14px;
}

/* ══════════════════════════════════════════
   LUAU SYNTAX HIGHLIGHT TOKENS
   Used inside #free-viewer-code <pre>
══════════════════════════════════════════ */
#free-viewer-code {
    font-family: 'Space Mono', 'Consolas', 'Fira Code', monospace;
    font-size: 12.5px;
    line-height: 1.75;
    color: #e6edf3;           /* default text */
    white-space: pre;
    tab-size: 4;
    word-break: normal;
    overflow-wrap: normal;
}

/* Keywords  (local, function, if, return …) */
#free-viewer-code .lh-kw   { color: #ff7b72; font-weight: 700; }

/* Builtins / standard library identifiers */
#free-viewer-code .lh-blt  { color: #79c0ff; }

/* Function call names */
#free-viewer-code .lh-fn   { color: #d2a8ff; }

/* String literals */
#free-viewer-code .lh-string { color: #a5d6ff; }

/* Comments */
#free-viewer-code .lh-comment { color: #8b949e; font-style: italic; }

/* Numeric literals */
#free-viewer-code .lh-number { color: #f2cc60; }

/* Operators & punctuation */
#free-viewer-code .lh-op   { color: #cdd9e5; }

/* Regular identifiers */
#free-viewer-code .lh-id   { color: #e6edf3; }

/* ══════════════════════════════════════════
   SAMPLE PICKER — asset type chip overrides
   (inline styles in JS handle these but
    adding CSS classes as fallback)
══════════════════════════════════════════ */
.asset-chip-model  {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px; border-radius: 5px;
    font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(100,130,220,0.12); color: #6483DC;
    border: 1px solid rgba(100,130,220,0.3); white-space: nowrap;
}

.asset-chip-free-script {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px; border-radius: 5px;
    font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(26,138,74,0.12); color: var(--green);
    border: 1px solid rgba(26,138,74,0.3); white-space: nowrap;
}

.asset-chip-locked-script {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px; border-radius: 5px;
    font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(217,48,37,0.10); color: var(--red);
    border: 1px solid rgba(217,48,37,0.25); white-space: nowrap;
}

/* ══════════════════════════════════════════
   FREE VIEWER — copy button base colour
   (keeps green tint on idle)
══════════════════════════════════════════ */
#free-viewer-copy-btn {
    background: rgba(26,138,74,0.15);
    color: var(--green);
    border: 1px solid rgba(26,138,74,0.3);
}
#free-viewer-copy-btn:hover {
    background: rgba(26,138,74,0.25);
    border-color: rgba(26,138,74,0.5);
}
/* ══════════════════════════════════════════
   PRICING LAYOUT
══════════════════════════════════════════ */
.pricing-layout { display:grid; grid-template-columns:1fr 300px; gap:24px; align-items:start; margin-top:28px; min-width:0; }
.pricing-layout > * { min-width:0; overflow:hidden; }
#pricing-products-col { min-width:0; width:100%; overflow:hidden; }

.pricing-section-title {
    font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
    color:var(--muted); margin-bottom:12px;
    display:flex; align-items:center; gap:10px;
}
.pricing-section-title::after { content:''; flex:1; height:1px; background: var(--border); }

.service-cards { display:flex; flex-direction:column; gap:8px; margin-bottom:24px; min-width:0; width:100%; }

.service-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 18px;
    display:flex; align-items:center; justify-content:space-between; gap:14px;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
    cursor:pointer; user-select:none;
    min-width:0; max-width:100%; box-sizing:border-box;
}
.service-card:hover { border-color: rgba(0,0,0,0.18); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.service-card.selected { border-color: var(--ink); background: var(--white); box-shadow: 0 0 0 2px var(--ink); }
.service-card-left { display:flex; align-items:center; gap:12px; flex:1; min-width:0; overflow:hidden; }

.service-checkbox {
    width:18px; height:18px; border:2px solid var(--muted-light); border-radius:5px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.15s ease;
}
.service-card.selected .service-checkbox { background: var(--ink); border-color: var(--ink); }
.service-checkbox i { font-size:9px; color:var(--white); opacity:0; transition:opacity 0.12s ease; }
.service-card.selected .service-checkbox i { opacity:1; }

.service-name { font-size:14px; font-weight:700; color:var(--ink); margin-bottom:2px; word-break:break-word; }
.service-desc { font-size:11px; color:var(--muted); line-height:1.5; word-break:break-word; }

.service-price {
    display:flex; align-items:center; gap:3px;
    font-family: var(--font-mono); font-size:15px; font-weight:700;
    color:var(--ink); white-space:nowrap; flex-shrink:0;
}

.rbx {
    display:inline-flex; align-items:center;
    font-family: var(--font-mono); font-weight:700; font-size:0.8em;
    color:inherit; line-height:1;
}

.service-card.disabled { opacity:0.4; pointer-events:none; cursor:not-allowed; }

.service-card.included-in-package {
    opacity:0.55;
    border-color: rgba(26,138,74,0.3) !important;
    background: rgba(26,138,74,0.03) !important;
    cursor:not-allowed !important; pointer-events:none;
}
.service-card.included-in-package .service-checkbox { background:rgba(26,138,74,0.2); border-color:rgba(26,138,74,0.5); }
.service-card.included-in-package .service-checkbox i { opacity:1; color:var(--green); }

/* ══════════════════════════════════════════
   CART PANEL
══════════════════════════════════════════ */
.cart-panel {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 20px; position: sticky; top: 0;
}
.cart-title {
    font-size:16px; font-weight:800; color:var(--ink);
    margin-bottom:16px; letter-spacing:-0.2px;
    display:flex; align-items:center; gap:8px;
}
.cart-title i { color:var(--ink); font-size:13px; }
.cart-items { min-height:70px; margin-bottom:12px; }
.cart-empty { text-align:center; padding:20px 0; color:var(--muted); font-size:12px; }
.cart-empty i { display:block; font-size:24px; color:var(--muted-light); margin-bottom:8px; }

.cart-line {
    display:flex; align-items:flex-start; justify-content:space-between; gap:8px;
    padding:8px 0; border-bottom:1px solid var(--border-soft);
    animation: fadeUp 0.2s ease forwards;
}
.cart-line:last-child { border-bottom:none; }
.cart-line-name { font-size:12px; color:var(--ink2); flex:1; line-height:1.4; }
.cart-line-name .cart-line-type { font-size:9px; color:var(--muted); letter-spacing:1px; text-transform:uppercase; display:block; margin-bottom:1px; font-family:var(--font-mono); }
.cart-line-price { font-size:12px; font-weight:700; color:var(--ink); white-space:nowrap; display:flex; align-items:center; gap:2px; flex-shrink:0; font-family:var(--font-mono); }

.cart-divider { height:1px; background:var(--border); margin:12px 0; }
.cart-total-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.cart-total-label { font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); font-weight:600; }
.cart-total-val { font-size:26px; font-weight:800; color:var(--ink); display:flex; align-items:baseline; gap:4px; letter-spacing:-0.5px; }
.cart-note { font-size:10px; color:var(--muted); line-height:1.6; margin-bottom:12px; }

.btn-order {
    width:100%; padding:13px;
    background: var(--ink); color: var(--white); border:none;
    border-radius:10px; font-family: var(--font-body);
    font-size:13px; font-weight:700; letter-spacing:0.3px;
    cursor:pointer; transition:all 0.15s ease;
    display:flex; align-items:center; justify-content:center; gap:8px;
}
.btn-order:hover { background: var(--ink2); transform:translateY(-1px); box-shadow:0 4px 14px rgba(0,0,0,0.18); }
.btn-order:active { transform:translateY(0); }
.btn-order:disabled { opacity:0.3; cursor:not-allowed; transform:none; box-shadow:none; }

/* ══════════════════════════════════════════
   ORDER NOW
══════════════════════════════════════════ */
.order-warnings { display:flex; flex-direction:column; gap:10px; margin-bottom:36px; max-width:580px; }
.warning-card {
    background: var(--white); border: 1px solid var(--border);
    border-left: 3px solid var(--ink); border-radius:10px;
    padding:14px 18px; display:flex; gap:12px; align-items:flex-start;
    opacity:0; animation:cardIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.warning-card:nth-child(1){animation-delay:.04s}
.warning-card:nth-child(2){animation-delay:.08s}
.warning-card:nth-child(3){animation-delay:.12s}
.warning-card:nth-child(4){animation-delay:.16s}
.warning-card:nth-child(5){animation-delay:.20s}
.warning-card.red { border-left-color: var(--red); }
.warning-card.green { border-left-color: var(--green); }
.warning-icon { font-size:14px; color:var(--ink); margin-top:1px; flex-shrink:0; }
.warning-card.red .warning-icon { color:var(--red); }
.warning-card.green .warning-icon { color:var(--green); }
.warning-title { font-size:13px; font-weight:700; color:var(--ink); margin-bottom:3px; }
.warning-text { font-size:12px; color:var(--muted); line-height:1.65; }

.order-cta-wrap {
    display:flex; flex-direction:column; align-items:flex-start; gap:10px;
    opacity:0; animation:fadeUp 0.4s 0.28s cubic-bezier(0.16,1,0.3,1) forwards;
}
.order-cta-label { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); font-weight:600; }

.btn-go-form {
    display:inline-flex; align-items:center; gap:10px;
    padding:14px 30px; background: var(--ink); color: var(--white);
    border:none; border-radius:12px; font-family: var(--font-body);
    font-size:14px; font-weight:700;
    text-decoration:none; cursor:pointer; transition:all 0.18s ease;
    position:relative; overflow:hidden;
}
.btn-go-form::after { display:none; }
.btn-go-form:hover { background: var(--ink2); transform:translateY(-2px); box-shadow:0 8px 20px rgba(0,0,0,0.18); }
.btn-go-form:active { transform:translateY(0); }

/* ══════════════════════════════════════════
   MODALS
══════════════════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; width: 100%; max-width: 640px; max-height: 90vh;
    display: flex; flex-direction: column; overflow: hidden;
    transform: translateY(16px) scale(0.99);
    transition: transform 0.28s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 22px 24px 18px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.modal-eyebrow { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:4px; font-weight:600; }
.modal-title { font-size:22px; font-weight:800; color:var(--ink); letter-spacing:-0.4px; }

.modal-close {
    width:30px; height:30px; border-radius:8px;
    background: var(--off-white); border: none;
    color:var(--muted); cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    font-size:13px; transition:all 0.15s ease; flex-shrink:0;
}
.modal-close:hover { background: var(--off-white2); color:var(--ink); }

.modal-cart-strip {
    background: var(--off-white); border-bottom: 1px solid var(--border);
    padding: 12px 24px; display:flex; align-items:center;
    justify-content:space-between; gap:14px; flex-shrink:0;
}
.modal-cart-strip.empty { display:none; }
.modal-cart-strip-inner { flex:1; min-width:0; }
.mcs-label { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:4px; display:flex; align-items:center; gap:5px; font-weight:600; }
.mcs-label i { color:var(--ink); }
.mcs-items { font-size:11px; color:var(--ink2); line-height:1.5; font-family:var(--font-mono); }
.mcs-total-wrap { flex-shrink:0; text-align:right; }
.mcs-total-label { display:block; font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:2px; font-weight:600; }
.mcs-total-val { font-size:20px; font-weight:800; color:var(--ink); display:flex; align-items:baseline; gap:3px; }

.modal-form-body { flex:1; overflow-y:auto; padding:20px 24px; display:flex; flex-direction:column; gap:18px; }
.modal-form-body::-webkit-scrollbar { width:4px; }
.modal-form-body::-webkit-scrollbar-thumb { background:var(--off-white2); border-radius:2px; }

.q-block { display:flex; flex-direction:column; gap:6px; }
.q-label { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--ink); }
.q-label .q-required { font-size:10px; font-weight:600; color:var(--ink); background:var(--off-white2); border:none; border-radius:5px; padding:2px 8px; }
.q-label .q-optional { font-size:10px; font-weight:600; color:var(--muted); background:var(--off-white); border:none; border-radius:5px; padding:2px 8px; }
.q-hint { font-size:11px; color:var(--muted); margin-top:-2px; line-height:1.5; }

.q-input, .q-textarea, .q-select {
    width:100%; background: var(--off-white); border: 1.5px solid var(--border);
    border-radius:10px; padding:11px 14px; font-family: var(--font-body);
    font-size:13px; color:var(--ink); outline:none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease; appearance:none;
}
.q-input:focus, .q-textarea:focus, .q-select:focus { border-color:var(--ink); box-shadow:0 0 0 3px rgba(0,0,0,0.07); background:var(--white); }
.q-input.error, .q-textarea.error { border-color:var(--red); box-shadow:0 0 0 3px rgba(217,48,37,0.08); }
.q-textarea { resize:vertical; min-height:100px; line-height:1.6; }
.q-select { cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:32px; }
.q-select option { background:#fff; color:var(--ink); }

.q-file-label {
    display:flex; align-items:center; gap:10px; padding:11px 14px;
    background: var(--off-white); border:1.5px dashed var(--border);
    border-radius:10px; cursor:pointer; transition:all 0.15s ease;
    font-size:12px; color:var(--muted); font-weight:600;
}
.q-file-label:hover { border-color:var(--ink); color:var(--ink); background:var(--off-white2); }
.q-file-label i { color:var(--ink); }
.q-file-input { display:none; }
.q-file-names { font-size:11px; color:var(--ink); margin-top:4px; font-family:var(--font-mono); }

.modal-footer {
    padding:14px 24px; border-top:1px solid var(--border);
    display:flex; align-items:center; justify-content:space-between;
    gap:12px; flex-shrink:0; background:var(--white);
}
.modal-footer-left { font-size:11px; color:var(--red); flex:1; min-width:0; }
.modal-submit-btn {
    display:flex; align-items:center; gap:8px; padding:12px 26px;
    background: var(--ink); color:var(--white); border:none; border-radius:10px;
    font-family: var(--font-body); font-size:13px; font-weight:700;
    cursor:pointer; transition:all 0.15s ease; white-space:nowrap; flex-shrink:0;
}
.modal-submit-btn:hover { background:var(--ink2); transform:translateY(-1px); box-shadow:0 4px 14px rgba(0,0,0,0.15); }
.modal-submit-btn:active { transform:translateY(0); }
.modal-submit-btn:disabled { opacity:0.35; cursor:not-allowed; transform:none; box-shadow:none; }

/* ── SUCCESS ── */
.success-box { max-width:440px; padding:32px; align-items:center; text-align:center; }
.success-icon-wrap {
    width:56px; height:56px; border-radius:50%;
    background:rgba(26,138,74,0.1); border:1.5px solid rgba(26,138,74,0.25);
    display:flex; align-items:center; justify-content:center;
    font-size:24px; color:var(--green); margin-bottom:16px;
    animation:popIn 0.4s cubic-bezier(0.16,1,0.3,1);
}
@keyframes popIn { from{transform:scale(0.5);opacity:0} to{transform:scale(1);opacity:1} }
.success-title { font-size:24px; font-weight:800; color:var(--ink); margin-bottom:8px; letter-spacing:-0.5px; }
.success-body { font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:20px; max-width:300px; }
.success-steps { display:flex; flex-direction:column; gap:10px; text-align:left; width:100%; margin-bottom:20px; }
.success-step { display:flex; gap:12px; align-items:flex-start; }
.ss-num {
    width:22px; height:22px; border-radius:50%;
    background:var(--off-white2); color:var(--ink2); font-size:10px; font-weight:700;
    display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}
.ss-text { font-size:12px; color:var(--muted); line-height:1.6; }
.ss-text strong { color:var(--ink); }

/* ══════════════════════════════════════════
   SUB-ADDON PANEL
══════════════════════════════════════════ */
.sub-addon-panel {
    display:none; margin-top:8px; background:var(--off-white);
    border:1px solid var(--border); border-radius:12px; padding:14px 16px;
    animation:fadeUp 0.18s cubic-bezier(0.16,1,0.3,1);
    max-width:100%; box-sizing:border-box; overflow:hidden;
}
.sub-addon-panel.visible { display:block; }
.sub-addon-section-label {
    font-size:10px; letter-spacing:1.5px; text-transform:uppercase;
    color:var(--muted); margin-bottom:8px;
    display:flex; align-items:center; gap:8px; font-weight:700;
}
.sub-addon-section-label::after { content:''; flex:1; height:1px; background:var(--border); }
.sub-addon-list { display:flex; flex-direction:column; gap:6px; }

.sub-addon-item {
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    padding:10px 12px; background:var(--white); border:1px solid var(--border);
    border-radius:9px; cursor:pointer; user-select:none; transition:all 0.12s ease;
    min-width:0; box-sizing:border-box;
}
.sub-addon-item:hover { border-color:rgba(0,0,0,0.18); }
.sub-addon-item.selected { border-color:var(--ink); box-shadow:0 0 0 1.5px var(--ink); }
.sub-addon-item-left { display:flex; align-items:center; gap:10px; flex:1; min-width:0; }

.sub-addon-checkbox {
    width:14px; height:14px; border:2px solid var(--muted-light); border-radius:3px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.12s ease;
}
.sub-addon-item.selected .sub-addon-checkbox { background:var(--ink); border-color:var(--ink); }
.sub-addon-checkbox i { font-size:7px; color:var(--white); opacity:0; transition:opacity 0.1s ease; }
.sub-addon-item.selected .sub-addon-checkbox i { opacity:1; }
.sub-addon-info { flex:1; min-width:0; }
.sub-addon-name { font-size:12px; font-weight:600; color:var(--ink); word-break:break-word; }
.sub-addon-desc { font-size:10px; color:var(--muted); margin-top:1px; line-height:1.4; word-break:break-word; }
.sub-addon-price { font-family:var(--font-mono); font-size:12px; font-weight:700; color:var(--ink); white-space:nowrap; flex-shrink:0; }
.sub-addon-price.free { color:var(--green); font-size:10px; letter-spacing:1px; text-transform:uppercase; }

/* ══════════════════════════════════════════
   QUANTITY
══════════════════════════════════════════ */
.qty-row {
    display:flex; align-items:center; gap:10px; margin-top:8px;
    padding:8px 12px; background:var(--white); border:1px solid var(--border); border-radius:10px;
}
.qty-label { font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--muted); flex:1; font-weight:600; }
.qty-controls { display:flex; align-items:center; background:var(--off-white); border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.qty-btn { width:30px; height:30px; background:transparent; border:none; color:var(--muted); cursor:pointer; font-size:14px; display:flex; align-items:center; justify-content:center; transition:all 0.12s ease; }
.qty-btn:hover { background:var(--off-white2); color:var(--ink); }
.qty-btn:disabled { opacity:0.3; cursor:not-allowed; }
.qty-display { min-width:32px; text-align:center; font-size:14px; font-weight:700; color:var(--ink); border-left:1px solid var(--border); border-right:1px solid var(--border); padding:0 4px; line-height:30px; }
.qty-unit { font-size:9px; letter-spacing:1px; color:var(--muted); text-transform:uppercase; font-weight:700; }
.price-per-unit { font-size:10px; color:var(--muted); }
.expand-chevron { font-size:11px; color:var(--muted-light); transition:transform 0.18s ease, color 0.15s ease; flex-shrink:0; }
.service-card.has-sub .expand-chevron { display:flex; }
.service-card.selected .expand-chevron { color:var(--ink); transform:rotate(180deg); }

/* ══════════════════════════════════════════
   TAX BAR
══════════════════════════════════════════ */
.tax-bar-wrap { margin:8px 0 10px; }
.tax-bar-track { height:3px; background:var(--off-white2); border-radius:2px; position:relative; overflow:hidden; margin-bottom:6px; }
.tax-bar-fill { height:100%; background:var(--ink); border-radius:2px; width:0%; transition:width 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s ease; }
.tax-bar-fill.waived { background:var(--green); }
.tax-bar-marker { position:absolute; right:0; top:0; bottom:0; width:2px; background:rgba(0,0,0,0.1); }
.tax-bar-label { font-size:10px; color:var(--muted); line-height:1.5; }
.tax-bar-label.waived { color:var(--green); }

/* ── CLEAR CART ── */
.btn-clear-cart {
    width:100%; padding:9px; background:transparent; color:var(--muted);
    border:1px solid var(--border); border-radius:8px; font-family:var(--font-body);
    font-size:12px; font-weight:600;
    cursor:pointer; transition:all 0.15s ease;
    display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:8px;
}
.btn-clear-cart:hover { border-color:var(--red); color:var(--red); background:rgba(217,48,37,0.04); }

/* ── INFO CARD ── */
.info-card {
    background:var(--white); border:1px solid var(--border); border-left:3px solid var(--ink);
    border-radius:10px; padding:14px 16px; display:flex; align-items:flex-start; gap:12px; margin-bottom:8px;
}
.info-card-icon { font-size:15px; color:var(--ink); flex-shrink:0; margin-top:1px; }
.info-card-title { font-size:13px; font-weight:700; color:var(--ink); margin-bottom:3px; }
.info-card-desc { font-size:11px; color:var(--muted); line-height:1.6; }
.info-card-badge {
    display:inline-flex; align-items:center; gap:5px; margin-top:6px;
    font-size:10px; font-weight:600;
    color:var(--green); background:rgba(26,138,74,0.08); border:1px solid rgba(26,138,74,0.2);
    border-radius:5px; padding:3px 8px;
}
.info-card-badge-warn {
display:inline-flex; align-items:center; gap:5px; margin-top:6px;
    font-size:10px; font-weight:600;
  border-radius:5px; padding:3px 8px;
    color:var(--red); background:rgba(217,48,37,0.08); border:1px solid rgba(217,48,37,0.2);
}

/* ── EMPTY CART GATE ── */
.empty-cart-gate {
    display:flex; flex-direction:column; align-items:flex-start; gap:14px;
    padding:24px; background:var(--white); border:1px solid var(--border);
    border-left:3px solid var(--ink); border-radius:14px; margin-bottom:28px; max-width:520px;
}
.ecg-icon { font-size:22px; color:var(--ink); }
.ecg-title { font-size:18px; font-weight:800; color:var(--ink); letter-spacing:-0.3px; }
.ecg-text { font-size:13px; color:var(--muted); line-height:1.7; }
.btn-go-pricing {
    display:inline-flex; align-items:center; gap:8px; padding:11px 22px;
    background:var(--ink); color:var(--white); border:none; border-radius:10px;
    font-family:var(--font-body); font-size:13px; font-weight:700;
    cursor:pointer; transition:all 0.15s ease;
}
.btn-go-pricing:hover { background:var(--ink2); transform:translateY(-1px); }

/* ── DELIVERY CHIPS ── */
.delivery-chips { display:flex; flex-wrap:wrap; gap:7px; }
.delivery-chip {
    padding:7px 14px; background:var(--white); border:1px solid var(--border);
    border-radius:999px; font-size:12px; color:var(--muted); cursor:pointer;
    transition:all 0.12s ease; font-weight:600; user-select:none;
}
.delivery-chip:hover { border-color:var(--ink); color:var(--ink); }
.delivery-chip.active { border-color:var(--ink); background:var(--ink); color:var(--white); }
.delivery-chip.disabled { opacity:0.3; cursor:not-allowed; pointer-events:none; }

/* ══════════════════════════════════════════
   TOS MODAL
══════════════════════════════════════════ */
.tos-updated {
    font-size:10px; color:var(--muted); letter-spacing:1.5px;
    text-transform:uppercase; margin-bottom:12px;
    display:flex; align-items:center; gap:8px; font-weight:600;
}
.tos-header-banner {
    background:var(--off-white); border:1px solid var(--border);
    border-left:3px solid var(--ink);
    border-radius:8px; padding:12px 16px; margin-bottom:18px;
    font-size:12px; color:var(--muted); line-height:1.7;
}
.tos-section { margin-bottom:20px; }
.tos-section:last-child { margin-bottom:0; }
.tos-section-title {
    font-size:12px; font-weight:700; color:var(--ink); margin-bottom:8px;
    display:flex; align-items:center; gap:8px;
    padding-bottom:6px; border-bottom:1px solid var(--border);
}
.tos-item {
    display:flex; gap:8px; align-items:flex-start;
    font-size:11px; color:var(--muted); line-height:1.65; margin-bottom:5px;
}
.tos-item:last-child { margin-bottom:0; }
.tos-item > i { color:var(--muted-light); flex-shrink:0; margin-top:3px; font-size:7px; }
.tos-item.highlight > i { color:var(--ink); }
.tos-item.danger > i { color:var(--red); }
.tos-item.good > i { color:var(--green); }
.tos-agree-label {
    display:flex; align-items:flex-start; gap:12px; cursor:pointer;
    padding:13px 14px; background:var(--off-white);
    border:1px solid var(--border); border-radius:10px;
    transition:border-color 0.15s ease;
}
.tos-agree-label:hover { border-color:var(--ink); }
.tos-agree-label input[type="checkbox"] { accent-color:var(--ink); width:15px; height:15px; flex-shrink:0; margin-top:1px; cursor:pointer; }
.tos-agree-text { font-size:12px; color:var(--muted); line-height:1.6; }
.tos-agree-text strong { color:var(--ink); }

/* ══════════════════════════════════════════
   LICENSE SECTION (Free Assets tab)
══════════════════════════════════════════ */
.license-section {
    margin-top: 32px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.license-section-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface2);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 16px 20px;
}
.license-icon {
    font-size: 18px;
    color: var(--ink);
    flex-shrink: 0;
    margin-top: 2px;
}
.license-body {
    flex: 1;
    min-width: 0;
}
.license-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.license-text {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px;
}
.license-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink2);
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.license-view-btn:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.license-view-btn i {
    font-size: 9px;
}

/* ══════════════════════════════════════════
   LICENSE MODAL – MARKDOWN CONTENT STYLES
   (dark background → force light text)
══════════════════════════════════════════ */
#license-modal-body {
    background: #0d1117 !important;
    color: #e6edf3 !important; /* base text: light white-gray */
}

/* Headings – white */
#license-modal-body h2,
#license-modal-body h3,
#license-modal-body h4 {
    color: #f0f6fc !important;
    font-family: var(--font-body), sans-serif;
    font-weight: 700;
    margin: 20px 0 10px 0;
}
#license-modal-body h2 { font-size: 18px; }
#license-modal-body h3 { font-size: 16px; }
#license-modal-body h4 { font-size: 14px; }

/* Paragraphs – light gray */
#license-modal-body p {
    color: #c9d1d9 !important;
    font-size: 13px;
    line-height: 1.7;
    margin: 8px 0;
}

/* Lists – light gray with yellow bullets */
#license-modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}
#license-modal-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
    color: #c9d1d9 !important;
    font-size: 13px;
    line-height: 1.6;
}
#license-modal-body ul li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--gold, #f5c800) !important;
}

/* Bold text – white */
#license-modal-body strong {
    color: #f0f6fc !important;
}

/* Inline code – light with dark background */
#license-modal-body code {
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono), monospace;
    font-size: 12px;
    color: #e6edf3 !important;
}

/* Code blocks (Markdown ``` blocks) */
#license-modal-body pre {
    background: #161b22 !important; /* GitHub temasına uygun koyu arka plan */
    padding: 14px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 12px 0;
    white-space: pre-wrap; /* Mobilde taşmaları önler */
}
#license-modal-body pre code {
    background: transparent !important;
    padding: 0;
    font-size: 12px;
    color: #c9d1d9 !important; /* Okunabilir açık gri yazı */
    line-height: 1.7;
}

/* Links – gold / yellow */
#license-modal-body a {
    color: var(--gold, #f5c800) !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Horizontal rule */
#license-modal-body hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

/* ══════════════════════════════════════════
   SAMPLE MODALS
══════════════════════════════════════════ */
.sw-sample-btn {
    display:inline-flex; align-items:center; gap:6px;
    margin-left:auto; padding:5px 12px;
    background:var(--off-white); border:1px solid var(--border);
    border-radius:6px; color:var(--ink2);
    font-family:var(--font-body); font-size:10px; font-weight:700;
    letter-spacing:0.5px; text-transform:uppercase;
    cursor:pointer; transition:all 0.15s ease; flex-shrink:0;
}
.sw-sample-btn:hover { background:var(--ink); color:var(--white); border-color:var(--ink); }
.sw-sample-btn i { font-size:9px; }

.sample-modal-hint {
    padding:8px 24px; background:var(--off-white); border-bottom:1px solid var(--border);
    font-size:10px; color:var(--muted); letter-spacing:0.3px;
    display:flex; align-items:center; gap:8px; flex-shrink:0; flex-wrap:wrap; font-weight:600;
}
.sample-modal-hint i { color:var(--ink); }

.sample-modal-scroll {
    flex:1; overflow-y:auto; overflow-x:hidden;
    padding:0; display:block; background:#fff;
    user-select:none; -webkit-user-select:none;
}
.sample-modal-scroll::-webkit-scrollbar { width:4px; }
.sample-modal-scroll::-webkit-scrollbar-thumb { background:var(--off-white2); border-radius:2px; }
.sample-modal-img { max-width:100%; width:100%; height:auto; display:block; border:none; outline:none; border-radius:0; pointer-events:none; -webkit-user-drag:none; }

/* ── FEATURE GRID ── */
.feat-grid {
    display:grid; grid-template-columns:1fr 1fr; gap:8px 16px; margin-top:10px;
    padding:10px 12px; background:var(--off-white); border:1px solid var(--border); border-radius:8px;
}
.feat-col { display:flex; flex-direction:column; gap:4px; min-width:0; }
.feat-col-label { font-size:9px; letter-spacing:1.5px; text-transform:uppercase; font-weight:700; margin-bottom:4px; display:flex; align-items:center; gap:5px; }
.feat-col-label--yes { color:var(--green); }
.feat-col-label--no  { color:var(--red); }
.feat-item { display:flex; align-items:flex-start; gap:6px; font-size:10px; color:var(--muted); line-height:1.4; }
.feat-item i { font-size:9px; flex-shrink:0; margin-top:2px; }
.feat-item.feat-yes i { color:var(--green); }
.feat-item.feat-no  i { color:var(--red); }
.feat-item.feat-yes span { color:var(--ink2); }
@media (max-width:480px) { .feat-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════
   DARK SURFACE: sidebar sidebar — yellow accents
   (sidebar is white, but any future dark block uses yellow)
══════════════════════════════════════════ */
/* .dark-surface { background: var(--ink); color: var(--white); }
   .dark-surface .accent { color: var(--yellow); } */

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .pricing-layout { grid-template-columns:1fr; }
    .cart-panel { position:static; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════ */
@media (max-width: 768px) {
    .shell { display:block; }
    .site-header { padding:0 16px; height:54px; position:sticky; top:0; z-index:200; }
    .logo { font-size:15px; }
    .visit-badge { display:none; }
    .cart-bubble { padding:6px 10px; font-size:10px; gap:5px; }
    .hamburger-btn { display:flex; }

    .sidebar {
        position:fixed; top:0; left:-270px; width:250px;
        height:100%; height:100dvh; z-index:600;
        padding:60px 12px 36px;
        border-right:1px solid var(--border);
        transition:left 0.26s cubic-bezier(0.16,1,0.3,1);
        overflow-y:auto; flex-direction:column; gap:2px; top:0 !important;
    }
    .sidebar.open { left:0; }
    .mobile-nav-overlay { display:block; }

    .content-area { padding:22px 16px 60px; min-height:auto; width:100%; }
    .section-title { font-size:28px; }
    .section-sub { font-size:10px; margin-bottom:16px; }
    .grid-label { font-size:11px; margin-top:28px; margin-bottom:10px; }
    .bio-intro { font-size:13px; margin-bottom:16px; max-width:100%; }
    .bio-tags { margin-bottom:20px; gap:6px; }
    .tag { font-size:10px; padding:5px 12px; }

    .games-grid { gap:10px; }
    .game-card { flex-direction:column; }
    .game-thumb-wrap { flex:none; width:100%; height:auto; }
    .game-thumb { aspect-ratio:16/9; height:auto; width:100%; }
    .game-play-overlay { opacity:1; background:rgba(0,0,0,0.25); }
    .game-info { padding:16px; gap:4px; }
    .game-name { font-size:17px; }
    .game-role { font-size:10px; }
    .game-desc { font-size:12px; }

    .smallworks-grid { grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:10px; }

    .pricing-layout { grid-template-columns:1fr; gap:16px; margin-top:14px; }
    .pricing-section-title { font-size:11px; }
    .service-card { padding:12px 14px; gap:10px; }
    .service-name { font-size:13px; }
    .service-desc { font-size:10px; }
    .service-price { font-size:13px; }
    .sub-addon-item { padding:8px 10px; }
    .sub-addon-name { font-size:11px; }
    .sub-addon-desc { font-size:9px; }
    .sub-addon-price { font-size:11px; }

    .cart-panel { padding:16px; border-radius:14px; }
    .cart-title { font-size:16px; }
    .cart-total-val { font-size:22px; }

    .order-warnings { max-width:100%; gap:8px; }
    .warning-card { padding:12px 14px; gap:10px; }
    .warning-title { font-size:12px; }
    .warning-text { font-size:11px; }
    .btn-go-form { padding:13px 22px; font-size:13px; }
    .empty-cart-gate { padding:18px; }

    .modal-overlay { padding:0; align-items:flex-end; }
    .modal-box { max-width:100%; max-height:92dvh; border-radius:20px 20px 0 0; transform:translateY(100%); }
    .modal-overlay.open .modal-box { transform:translateY(0); }
    .modal-header { padding:16px 18px 13px; }
    .modal-title { font-size:20px; }
    .modal-cart-strip { padding:10px 18px; flex-wrap:wrap; gap:8px; }
    .mcs-total-val { font-size:17px; }
    .modal-form-body { padding:16px 18px; gap:14px; }
    .modal-footer { padding:12px 18px; flex-wrap:wrap; gap:8px; }
    .modal-submit-btn { width:100%; justify-content:center; }
    .modal-footer-left { width:100%; text-align:center; }

    .success-box { padding:26px 18px; }
    .success-title { font-size:20px; }
    .success-body { font-size:12px; }
    .ss-text { font-size:11px; }

    .delivery-chip { font-size:11px; padding:6px 12px; }
    .tos-section-title { font-size:12px; }
    .tos-item { font-size:10px; }
}

@media (max-width: 380px) {
    .site-header { padding:0 12px; }
    .logo { font-size:14px; }
    .content-area { padding:16px 12px 48px; }
    .section-title { font-size:24px; }
    .cart-bubble-text { display:none; }
}

/* ═══════════════════════════════════════════════════════
   SHINING ARROW STUDIOS — Brand additions
   Append to style.css
═══════════════════════════════════════════════════════ */

/* ── SAS colour tokens ── */
:root {
    --sas-gold:       #F5C800;
    --sas-gold-deep:  #C89A00;
    --sas-gold-light: #FFE066;
    --sas-gold-dim:   rgba(245,200,0,0.12);
    --sas-gold-glow:  rgba(245,200,0,0.25);
    --sas-dark:       #0E0A00;
    --sas-dark2:      #1A1200;
    --sas-amber:      #FF9500;
}

/* ══════════════════════════════════════════
   BIO SUB-TABS
══════════════════════════════════════════ */
.bio-subtab-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    flex-wrap: wrap;
}

.bio-subtab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}
.bio-subtab-btn i { font-size: 11px; }
.bio-subtab-btn:hover { color: var(--ink); }
.bio-subtab-btn.active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 700; }
.bio-subtab-btn.sas-tab.active {
    color: var(--sas-gold-deep);
    border-bottom-color: var(--sas-gold);
}
.bio-subtab-btn.sas-tab { color: var(--sas-gold-deep); }
.bio-subtab-btn.sas-tab:hover { color: var(--sas-gold-deep); opacity: 0.8; }

.bio-subpanel { display: none; }
.bio-subpanel.active { display: block; animation: fadeUp 0.28s cubic-bezier(0.16,1,0.3,1); }

/* ══════════════════════════════════════════
   SAS THEME — gold gradient content area
══════════════════════════════════════════ */
.content-area.sas-theme {
    background: linear-gradient(
        160deg,
        #0E0A00 0%,
        #1C1400 25%,
        #251A00 50%,
        #1A1200 75%,
        #0E0A00 100%
    );
    transition:  0.5s ease;
}
/* subtle animated grain layer */
.content-area.sas-theme::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

/* text colour resets inside SAS panel */
.sas-panel .section-sub { color: rgba(245,200,0,0.6); }
.sas-panel .section-title { color: #fff; }
.sas-panel .section-title span { color: var(--sas-gold); font-weight: 800; }
.sas-panel .grid-label { color: rgba(255,255,255,0.4); }
.sas-panel .grid-label::after { background: rgba(255,255,255,0.08); }

/* ── SAS hero ── */
.sas-hero {
    display: flex;
    align-items: center;   /* already there, keep it */
    gap: 20px;
    margin-bottom: 44px;
    padding: 24px 28px;    /* was 32px 36px — too tall */
    background: rgba(245,200,0,0.06);
    border: 1px solid rgba(245,200,0,0.25);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.sas-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(245,200,0,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.sas-hero-logo {
    width: 128px; height: 128px;   /* was 96px — too large */
    border-radius: 14px;
    object-fit: contain;
    flex-shrink: 0;
    border: 1px solid rgba(245,200,0,0.25);
    background: rgba(245,200,0,0.06);
    padding: 8px;
}
.sas-hero-text { flex: 1; min-width: 0; }
.sas-hero-eyebrow {
    color: var(--sas-gold-deep);
}
.sas-hero-name {
    font-size: 28px;   /* was 34px */
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 6px;
}
.sas-hero-name span { color: var(--sas-gold); }
.sas-hero-tagline {
    font-size: 13px; color: rgba(57, 57, 57, 0.55);
    line-height: 1.7; max-width: 420px;
}

/* ── SAS info cards ── */
.sas-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}
.sas-info-card {
    background: var(--white);
    border: 1px solid rgba(245,200,0,0.2);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.sas-info-card:hover {
    background: rgba(245,200,0,0.04);
    border-color: rgba(245,200,0,0.4);
}
.sas-info-card-icon {
    font-size: 18px; color: var(--sas-gold);
    margin-bottom: 10px;
}
.sas-info-card-title {
    font-size: 13px; font-weight: 700; color: var(--ink);
    margin-bottom: 6px; letter-spacing: -0.2px;
}
.sas-info-card-text {
    font-size: 11px; color: var(--muted);
    line-height: 1.7;
}

/* ── SAS team ── */
.sas-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.sas-team-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    flex: 1 1 220px;
}
.sas-team-avatar {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(245,200,0,0.12);
    border: 1px solid rgba(245,200,0,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--ink); flex-shrink: 0;
}
.sas-team-name {
    font-size: 13px; font-weight: 700; color: var(--ink);
    margin-bottom: 2px;
}
.sas-team-role {
    font-size: 10px; color: var(--ink);
    letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}

/* ── SAS goals ── */
.sas-goals-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}
.sas-goal-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.sas-goal-num {
    width: 24px; height: 24px;
    border-radius: 6px;
    background: rgba(245,200,0,0.12);
    border: 1px solid rgba(245,200,0,0.25);
    color: var(--sas-gold);
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sas-goal-text {
    font-size: 12px; color: var(--ink2); line-height: 1.65;
    padding-top: 2px;
}
.sas-goal-text strong { color: var(--ink); }

/* ── SAS section label ── */
.sas-grid-label {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    color: var(--sas-gold-deep);
    margin-bottom: 14px; margin-top: 36px;
    letter-spacing: 2px; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
}
.sas-grid-label::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(245,200,0,0.3);
}

/* ══════════════════════════════════════════
   OUR GAMES SUB-TAB
══════════════════════════════════════════ */
.studio-games-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.studio-game-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    opacity: 0;
    animation: cardIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.studio-game-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }

.studio-game-thumb-wrap {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}
.studio-game-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.studio-game-card:hover .studio-game-thumb { transform: scale(1.04); }

.studio-game-play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s ease;
}
.studio-game-card:hover .studio-game-play-overlay { opacity: 1; }

.studio-game-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    flex: 1;
}
.studio-game-studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sas-gold-deep);
    background: rgba(245,200,0,0.08);
    border: 1px solid rgba(245,200,0,0.25);
    border-radius: 5px;
    padding: 3px 10px;
    align-self: flex-start;
    margin-bottom: 4px;
}
.studio-game-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.4px;
    line-height: 1.1;
}
.studio-game-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    align-self: flex-start;
}
.studio-game-status.dev { color: var(--muted); background: var(--off-white); border: 1px solid var(--border); }
.studio-game-status.live { color: var(--green); background: rgba(26,138,74,0.08); border: 1px solid rgba(26,138,74,0.25); }

.studio-game-role {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.studio-game-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
    max-width: 540px;
}
.studio-game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.studio-game-tag {
    font-size: 10px;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--ink2);
    background: var(--off-white);
    font-weight: 600;
}
.studio-game-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    padding: 9px 18px;
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
    align-self: flex-start;
}
.studio-game-link:hover { background: var(--ink2); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   SAS COMMUNITY MODAL
══════════════════════════════════════════ */
.sas-community-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    z-index: 1100;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.sas-community-modal-overlay.open { opacity: 1; pointer-events: all; }

.sas-community-modal {
    background: #111006;
    border: 1px solid rgba(245,200,0,0.2);
    border-radius: 22px;
    width: 100%; max-width: 440px;
    max-height: 90vh;
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,200,0,0.08);
}
.sas-community-modal-overlay.open .sas-community-modal {
    transform: translateY(0) scale(1);
}

/* gold gradient header stripe */
.sas-comm-header {
    background: linear-gradient(135deg, #1C1400 0%, #2A1F00 50%, #1C1400 100%);
    border-bottom: 1px solid rgba(245,200,0,0.15);
    padding: 24px 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* logo + name sit side by side */
.sas-comm-header-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    position: relative;
}
.sas-comm-header::before {
    content: '';
    position: absolute;
    top: -40px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 140px;
    background: radial-gradient(ellipse, rgba(245,200,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.sas-comm-logo {
    width: 72px; height: 72px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(245,200,0,0.3);
    background: rgba(245,200,0,0.07);
    padding: 6px;
    margin-bottom: 14px;
    position: relative;
}
.sas-comm-studio-name {
    font-family: var(--font-body);
    font-size: 17px; font-weight: 800;
    color: #fff; letter-spacing: -0.3px;
    margin-bottom: 5px;
}
.sas-comm-studio-name span { color: var(--sas-gold); }
.sas-comm-subtitle {
    font-size: 11px; color: rgba(255,255,255,0.4);
    line-height: 1.6; letter-spacing: 0.2px;
}
.sas-comm-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}
.sas-comm-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.sas-comm-body {
    padding: 20px 24px;
    display: flex; flex-direction: column; gap: 12px;
    overflow-y: auto;
    flex: 1;
}

.sas-comm-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245,200,0,0.1);
    border-radius: 11px;
    transition: border-color 0.15s ease;
}
.sas-comm-step:hover { border-color: rgba(245,200,0,0.22); }

.sas-comm-step-num {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(245,200,0,0.1);
    border: 1px solid rgba(245,200,0,0.25);
    color: var(--sas-gold);
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.sas-comm-step-title {
    font-size: 12px; font-weight: 700; color: #fff;
    margin-bottom: 4px; letter-spacing: 0.1px;
}
.sas-comm-step-title i { margin-right: 6px; }
.sas-comm-step-desc {
    font-size: 10px; color: rgba(255,255,255,0.4);
    line-height: 1.65; letter-spacing: 0.2px;
}
.sas-comm-step-desc strong { color: rgba(245,200,0,0.85); }

.sas-comm-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(245,200,0,0.1);
    background: rgba(0,0,0,0.2);
    display: flex; flex-direction: column; gap: 9px;
}
.sas-comm-join-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 13px;
    background: linear-gradient(135deg, var(--sas-gold) 0%, var(--sas-amber) 100%);
    color: #1A1200;
    border: none; border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px; font-weight: 800;
    text-decoration: none; cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}
.sas-comm-join-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,200,0,0.3);
}
.sas-comm-join-btn i { font-size: 15px; }

.sas-comm-dismiss-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; padding: 10px;
    background: transparent;
    color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
}
.sas-comm-dismiss-btn:hover {
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════
   ABOUT ME — improved layout
══════════════════════════════════════════ */
.about-skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 32px;
}
.about-skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink2);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 13px;
}
.about-skill-chip i { color: var(--muted); font-size: 10px; }

.about-stat-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.about-stat {
    flex: 1 1 120px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-stat-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
}
.about-stat-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
    .bio-subtab-bar { gap: 0; margin-bottom: 24px; }
    .bio-subtab-btn { padding: 9px 13px; font-size: 12px; }
    .sas-hero { flex-direction: column; text-align: center; padding: 22px 18px; gap: 16px; }
    .sas-hero-tagline { max-width: 100%; }
    .sas-hero-name { font-size: 26px; }
    .sas-info-grid { grid-template-columns: 1fr; }
    .studio-game-card { flex-direction: column; }
    .studio-game-thumb-wrap { flex: none; width: 100%; height: 180px; }
    .studio-game-play-overlay { opacity: 1; background: rgba(0,0,0,0.25); }
    .studio-game-body { padding: 18px; }
    .studio-game-name { font-size: 18px; }
    .sas-community-modal-overlay { padding: 0; align-items: flex-end; }
    .sas-community-modal { max-width: 100%; border-radius: 22px 22px 0 0; }
    .about-stat-val { font-size: 22px; }
}