/* Fastool: minimal monochrome, frosted glass like favicon.png.
   Ringan: system font, tanpa framework/animasi JS, 3 tier responsif. */
:root {
    --bg: #0b0b0c;
    --glass: rgba(255, 255, 255, 0.04);
    --input-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.55);
    --faint: rgba(255, 255, 255, 0.32);
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overscroll-behavior: none; }
html, body { overflow-x: clip; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.55;
    font-size: 14px;
}
body.gate-locked { overflow: hidden; }

/* Entrance halus murni CSS (pengganti GSAP) */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
body.ready .hero, body.ready .card, body.ready .panel {
    animation: rise 0.35s ease both;
}
body.ready .panel { animation-delay: 0.08s; }
@keyframes pop { 0% { transform: scale(0.85); } 60% { transform: scale(1.08); } 100% { transform: scale(1); } }
.badge-option.selected img { animation: pop 0.3s ease; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    body.ready .hero, body.ready .card, body.ready .panel, .badge-option.selected img { animation: none; }
}

h1, h2, h3, h4, p, span, label, a, li, strong { color: #ffffff; }

.bg-glow {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background: radial-gradient(560px 260px at 50% -100px, rgba(255, 255, 255, 0.05), transparent 70%);
}

.hidden { display: none !important; }
#site { width: min(960px, 94vw); margin: 14px auto 30px; min-height: calc(100vh - 44px); display: flex; flex-direction: column; position: relative; z-index: 1; }
body.gate-locked #site { display: none; }

/* ---------- FULLSCREEN LOGIN GATE ---------- */
.login-gate {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 18px; background: rgba(11, 11, 12, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow-y: auto;
}
body:not(.gate-locked) .login-gate { display: none; }
.gate-card {
    width: 100%; max-width: 330px;
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px 26px;
    text-align: center;
}
.gate-logo { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 12px; }
.gate-card h2 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.gate-desc { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }

/* ---------- NAVBAR ---------- */
.navbar {
    position: sticky; top: 14px; z-index: 50;
    background: rgba(16, 16, 18, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    will-change: transform;
    border: 1px solid var(--border);
    border-radius: 14px;
}
.nav-inner { max-width: none; margin: 0; padding: 10px 12px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; }
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; }
.brand-img { width: 26px; height: 26px; border-radius: 7px; display: block; }
.nav-links { display: flex; gap: 2px; margin: 0 auto; align-items: center; justify-content: center; }
.nav-link {
    background: none; border: none; cursor: pointer; text-decoration: none;
    font-size: 13px; font-weight: 500; color: var(--muted);
    padding: 7px 11px; border-radius: 8px; font-family: var(--font-body);
    display: inline-flex; align-items: center; gap: 5px;
}
.nav-link:hover, .nav-link.active { color: #ffffff; background: rgba(255, 255, 255, 0.06); }
.nav-dropdown { position: relative; }
.nav-drop-menu {
    display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 190px;
    background: #141416;
    border: 1px solid var(--border); border-radius: 12px; padding: 6px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.nav-dropdown.open .nav-drop-menu { display: block; }
.drop-item { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 500; }
.drop-item:hover { background: rgba(255, 255, 255, 0.06); }
.hamburger { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; width: 40px; height: 40px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 16px; height: 2px; background: #ffffff; border-radius: 2px; transition: 0.25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn-discord {
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent; color: #ffffff !important;
    padding: 7px 13px; border-radius: 9px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    border: 1px solid var(--border-strong); white-space: nowrap;
}
.btn-discord:hover { background: rgba(255, 255, 255, 0.07); }

/* ---------- VIEWS ---------- */
.page-view { display: none; }
.page-view.active { display: block; }

/* ---------- HERO ---------- */
.hero { max-width: 640px; margin: 44px auto 52px; padding: 0 18px; text-align: center; }
.hero-badge {
    display: inline-block; border: 1px solid var(--border); border-radius: 999px;
    padding: 4px 13px; font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.hero h1 { font-family: var(--font-heading); font-size: clamp(26px, 5vw, 34px); font-weight: 700; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 10px; }
.subtitle { font-size: 13.5px; color: var(--muted); max-width: 480px; margin: 0 auto; }
.hero-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 22px 0 16px; }
.hero-stats { font-size: 12px; color: var(--faint); }
.hero-stats strong { color: var(--muted); font-weight: 600; }
.hero-stats .dot { margin: 0 8px; }
#statServers { font-variant-numeric: tabular-nums; }

/* ---------- PANEL (hairline spec-sheet, replaces feature cards) ---------- */
.panel { margin-bottom: 52px; }
.panel-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); padding: 0 4px 10px; }
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.panel-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--glass); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.panel-item > svg { color: #ffffff; flex-shrink: 0; width: 16px; height: 16px; }
.panel-item h3 { font-family: var(--font-heading); font-size: 14px; line-height: 1.25; }
.panel-item p { font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.tool-faq { margin-top: 12px; }
.tool-faq .card-title { font-size: 15px; margin-bottom: 10px; }
.tool-faq .faq-list { max-width: none; }

/* ---------- PAGE / CARDS ---------- */
.page { max-width: none; margin: 0; padding: 0 0 10px; width: 100%; }
.tool-wrap { max-width: none; margin: 0 0 52px; scroll-margin-top: 90px; }
.page-card { padding: 22px; }
.card {
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    position: relative;
}
.form-card {
    border-color: var(--border-strong);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 40px rgba(0,0,0,0.45);
    padding: 28px;
}
.card-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.step-label { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.step-num { background: #ffffff; color: #000000 !important; font-weight: 800; font-size: 10.5px; border-radius: 6px; padding: 2px 8px; letter-spacing: 0; }

/* ---------- INPUTS ---------- */
.input-wrapper { position: relative; width: 100%; margin-bottom: 12px; }
.input-group { margin-bottom: 12px; }
.input-group label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 6px; }
#accessKey, #token, .input-field {
    width: 100%; padding: 12px 13px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 10px; color: #ffffff;
    font-size: 16px; outline: none;
    transition: border-color 0.15s;
}
#accessKey, #token { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
#accessKey { text-align: center; }
#token { padding-right: 44px; }
.input-field::placeholder, #accessKey::placeholder, #token::placeholder { color: var(--faint); font-family: var(--font-body); }
.input-field:focus, #accessKey:focus, #token:focus { border-color: var(--border-strong); }
select.input-field { cursor: pointer; }
select.input-field option { background: #141416; color: #ffffff; }
.input-with-toggle { position: relative; }
.input-with-toggle .input-field { padding-right: 44px; }
.toggle-btn, .toggle-visibility {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--muted); cursor: pointer;
    min-width: 40px; min-height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px;
}
.toggle-btn:hover, .toggle-visibility:hover { color: #ffffff; background: rgba(255, 255, 255, 0.07); }
.toggle-btn svg, .toggle-visibility svg { width: 18px; height: 18px; flex-shrink: 0; }
.check-row { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin: 2px 0 14px; cursor: pointer; }
.check-row input { width: 15px; height: 15px; margin-top: 2px; accent-color: #ffffff; flex-shrink: 0; }

.token-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.token-header label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); }
.security-note { display: flex; gap: 7px; align-items: flex-start; font-size: 11.5px; color: var(--muted); margin-top: 8px; }
.security-note svg { flex-shrink: 0; margin-top: 2px; }
.need-key { font-size: 12.5px; text-align: center; margin: 12px 0 0; color: var(--muted); }
.need-key a { color: #ffffff; font-weight: 700; text-decoration: underline; }

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: #ffffff; color: #000000 !important;
    border: 1px solid #ffffff; border-radius: 10px;
    padding: 11px 20px; font-family: var(--font-heading);
    font-weight: 700; font-size: 13.5px; cursor: pointer; text-decoration: none;
    transition: opacity 0.15s ease;
}
.btn-primary:hover:not(:disabled) { opacity: 0.88; }
.btn-primary:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-primary.full, .btn-ghost.full { width: 100%; }
.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent; color: #ffffff !important;
    border: 1px solid var(--border-strong); border-radius: 10px;
    padding: 11px 20px; font-family: var(--font-heading);
    font-weight: 600; font-size: 13.5px; cursor: pointer; text-decoration: none;
}
.btn-ghost:hover:not(:disabled) { background: rgba(255, 255, 255, 0.06); }
#stopCloneBtn { margin-top: 8px; }
.clone-note { font-size: 11.5px; color: var(--muted); margin-top: 12px; }

/* ---------- PROGRESS + LOG ---------- */
.progress-container { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
.progress-bar-wrap { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.progress-bar-fill { height: 100%; width: 0%; border-radius: 999px; background: #ffffff; transition: width 0.25s ease; }
.progress-label { font-size: 12px; font-weight: 700; min-width: 40px; text-align: right; }
.log-container { margin-top: 14px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: rgba(0,0,0,0.3); }
.log-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 13px; border-bottom: 1px solid var(--border); }
.log-header h4 { font-family: var(--font-heading); font-size: 12.5px; }
.log-actions { display: flex; gap: 6px; }
.log-btn { background: transparent; border: 1px solid var(--border); color: #ffffff; min-width: 36px; min-height: 36px; border-radius: 7px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.log-btn:hover { background: rgba(255,255,255,0.08); }
#cloneLogs { max-height: 220px; overflow-y: auto; padding: 10px 13px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11.5px; display: flex; flex-direction: column; gap: 4px; }
#cloneLogs .log-line { color: rgba(255,255,255,0.8); word-break: break-word; }
#cloneLogs .log-line.ok { color: #ffffff; }
#cloneLogs .log-line.err { color: #ffffff; font-weight: 700; }
#cloneLogs .log-line.warn { color: var(--muted); }
#cloneLogs .log-line .t { color: var(--faint); margin-right: 7px; }

/* ---------- PROFILE ---------- */
.profile-section { margin: 14px 0; }
.profile-card { background: rgba(0,0,0,0.25); border: 1px solid var(--border); border-radius: 10px; padding: 12px 13px; display: flex; align-items: center; gap: 12px; }
.avatar-ring { border-radius: 50%; padding: 2px; background: rgba(255,255,255,0.7); }
.profile-avatar { width: 40px; height: 40px; border-radius: 50%; display: block; border: 2px solid #101012; object-fit: cover; background: #000000; }
.profile-info { flex: 1; }
.profile-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); display: block; }
.profile-info h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.current-badge-icon { width: 22px; height: 22px; }
.logout-btn { background: transparent; border: 1px solid var(--border); color: #ffffff; cursor: pointer; min-width: 40px; min-height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logout-btn:hover { background: rgba(255,255,255,0.08); }
.logout-btn svg { width: 15px; height: 15px; }

/* ---------- BADGES ---------- */
.badge-selection h3 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin: 16px 0 10px; }
.badge-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.badge-option { background: rgba(0,0,0,0.25); border: 1px solid var(--border); border-radius: 12px; padding: 16px 6px 13px; text-align: center; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.badge-option:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.05); }
.badge-icon img { width: 44px; height: 44px; object-fit: contain; margin-bottom: 8px; }
.badge-name { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 13px; }
.badge-desc { display: block; font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.badge-option.selected { border-color: #ffffff; background: rgba(255,255,255,0.07); box-shadow: 0 0 0 1px #ffffff; }
.action-buttons { display: flex; gap: 10px; margin-bottom: 14px; }

/* ---------- STATUS (mono) ---------- */
.status-section { min-height: 44px; }
.status-message { display: none; padding: 11px 13px; border-radius: 10px; font-size: 12.5px; font-weight: 500; text-align: center; border: 1px solid var(--border-strong); background: rgba(0,0,0,0.3); color: #ffffff; }
.status-message.show { display: block; }
.loading { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 11px; border: 1px solid var(--border); border-radius: 10px; font-size: 12.5px; color: var(--muted); background: rgba(0,0,0,0.3); }
.spinner { width: 14px; height: 14px; border: 2px solid rgba(255, 255, 255, 0.15); border-top-color: #ffffff; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CONTENT SECTIONS ---------- */
.section-kicker { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.section-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.section-desc { color: var(--muted); font-size: 13px; max-width: 560px; margin-bottom: 20px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.feature-card { background: var(--glass); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.feature-card h3 { font-family: var(--font-heading); font-size: 14px; margin-bottom: 5px; }
.feature-card p { font-size: 12.5px; color: var(--muted); }
.feature-icon { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; color: var(--muted); background: rgba(0,0,0,0.25); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 640px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; background: var(--glass); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: #ffffff; cursor: pointer; padding: 13px 15px; font-family: var(--font-heading); font-size: 13.5px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 10px; text-align: left; }
.faq-plus { font-size: 17px; font-weight: 400; flex-shrink: 0; color: var(--muted); transition: transform 0.2s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding: 0 15px 14px; font-size: 12.5px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 260px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); margin-top: auto; }
.footer-inner { max-width: none; margin: 0; padding: 22px 18px; display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 7px; font-family: var(--font-heading); font-weight: 700; font-size: 13px; }
.footer-brand img { width: 20px; height: 20px; border-radius: 5px; }
.footer-text { font-size: 11.5px; color: var(--muted); max-width: 480px; }
.footer-links { display: flex; align-items: center; gap: 10px; font-size: 12px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: #ffffff; }
.footer-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); }

/* ---------- LOOKUP RESULTS (cyerox-style, mini mono) ---------- */
.lookup-result { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.lookup-banner { width: 100%; border-radius: 10px; border: 1px solid var(--border); margin-bottom: 12px; display: block; }
.lookup-header { display: flex; gap: 13px; align-items: center; margin-bottom: 12px; }
.lookup-icon { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-strong); background: #000; flex-shrink: 0; }
.lookup-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.lookup-desc { font-size: 12px; color: var(--muted); }
.download-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.small-dl { padding: 8px 14px; font-size: 12px; border-radius: 9px; }
.lookup-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 12px; }
.lookup-stat { border: 1px solid var(--border); border-radius: 10px; padding: 11px 12px; background: rgba(0,0,0,0.25); }
.lookup-stat-num { display: block; font-family: var(--font-heading); font-size: 17px; font-weight: 800; }
.lookup-stat-label { display: block; font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.lookup-details { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.detail-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 12px; font-size: 12px; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-k { color: var(--muted); flex-shrink: 0; }
.detail-v { text-align: right; word-break: break-word; }

/* ---------- RESPONSIVE: 3 tier (HP / tablet / desktop) ---------- */
/* Tablet: 601 to 1024px */
@media (max-width: 1024px) {
    #site { width: min(720px, 94vw); }
    .nav-links { gap: 0; }
    .nav-link { padding: 10px; }
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: 1fr; }
    .hamburger { display: flex; }
    .nav-inner { grid-template-columns: auto auto 1fr; }
    .nav-links {
        display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: #101012; border: 1px solid var(--border); border-radius: 12px;
        padding: 10px 12px 12px; margin: 0;
    }
    .nav-links.open { display: flex; }
    .nav-inner { position: relative; }
    .nav-inner > .btn-discord { justify-self: end; }
    .nav-drop-menu { position: static; box-shadow: none; margin-top: 2px; }
    .action-buttons { flex-direction: column; }
}
@media (max-width: 600px) {
    .panel-grid { grid-template-columns: 1fr; }
    .card { padding: 16px 14px; }
    .form-card { padding: 20px 16px; }
    .page-card { padding: 18px 14px; }
    .hero { margin-top: 30px; }
    .badge-options { gap: 8px; }
    .badge-icon img { width: 38px; height: 38px; }
    .nav-link { padding: 11px 12px; font-size: 14px; }
    .drop-item { padding: 12px; font-size: 14px; }
    .log-btn { width: 36px; height: 36px; }
}
