:root {
    --bg: #1a1a2e;
    --card: #16213e;
    --accent: #0f3460;
    --green: #00b894;
    --blue: #0984e3;
    --yellow: #fdcb6e;
    --red: #d63031;
    --text: #e0e0e0;
    --dim: #6b7f99;
    --bright: #ffffff;
    --border: #2a2a4a;
    --r: 12px;
    --shadow: 0 4px 15px rgba(0,0,0,0.3);
    --font: system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono: 'Courier New', 'Fira Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; }
a { color: var(--blue); text-decoration: none; }

/* ====== HEADER ====== */
.g-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.g-logo { font-size: 18px; font-weight: 700; color: var(--bright); white-space: nowrap; }
.g-hgroup { display: flex; gap: 16px; font-size: 14px; color: var(--dim); }
.g-status { margin-left: auto; font-size: 13px; font-weight: 600; white-space: nowrap; }

/* ====== CAMERAS ====== */
.g-cameras { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 20px; }
.g-cam {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.g-cam-title {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dim);
    border-bottom: 1px solid var(--border);
}
.g-cam-feed {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    position: relative;
}
.g-cam-feed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.g-cam-ph {
    text-align: center;
    font-size: 13px;
    color: var(--dim);
    line-height: 2;
    opacity: 0.5;
}

/* Статус-бейдж поверх видео */
.g-cam-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    z-index: 10;
}
.g-cam-badge.connecting {
    background: rgba(0,0,0,0.7);
    color: var(--yellow);
}
.g-cam-badge.live {
    background: rgba(214,48,49,0.85);
    color: #fff;
}
.g-cam-badge.offline {
    background: rgba(0,0,0,0.7);
    color: var(--dim);
}
.g-cam-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.g-cam-badge.live .g-cam-dot {
    animation: blink-dot 1s step-end infinite;
}
@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
/* Подсветка рамки при активной камере */
.g-cam.cam-live   { border-color: var(--red); box-shadow: 0 0 12px rgba(214,48,49,0.35); }
.g-cam.cam-wait   { border-color: var(--yellow); }
.g-cam.cam-off    { border-color: var(--border); }
.g-cam-last {
    padding: 10px 14px;
    font-size: 13px;
    color: var(--dim);
    border-top: 1px solid var(--border);
    min-height: 42px;
}
.g-cam-last .plate { font-family: var(--mono); font-weight: 700; font-size: 16px; color: var(--bright); }
.g-cam-last .vtype { margin-left: 8px; }
.g-cam-last .etime { float: right; color: var(--dim); }

.g-cam.flash-in { border-color: var(--green); box-shadow: 0 0 25px rgba(0,184,148,0.25); }
.g-cam.flash-out { border-color: var(--blue); box-shadow: 0 0 25px rgba(9,132,227,0.25); }

/* ====== STATS ====== */
.g-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 12px 20px;
}
.g-stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 10px;
    text-align: center;
}
.g-stat-v { font-size: 28px; font-weight: 700; color: var(--bright); }
.g-stat-l { font-size: 11px; color: var(--dim); margin-top: 4px; white-space: nowrap; }

/* ====== FEED ====== */
.g-feed-wrap { padding: 0 20px 20px; }
.g-feed-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.g-feed-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dim); }
.g-feed-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.g-search {
    padding: 8px 12px;
    background: var(--accent);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: 13px;
    outline: none;
    width: 180px;
    transition: border-color 0.2s;
}
.g-search:focus { border-color: var(--blue); }
.g-search::placeholder { color: var(--dim); }

.g-feed { display: flex; flex-direction: column; gap: 6px; max-height: 55vh; overflow-y: auto; }
.g-feed::-webkit-scrollbar { width: 6px; }
.g-feed::-webkit-scrollbar-track { background: transparent; }
.g-feed::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ====== EVENT CARD ====== */
.g-ev {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--border);
    border-radius: var(--r);
    animation: slideIn 0.3s ease;
}
.g-ev-in { border-left-color: var(--green); }
.g-ev-out { border-left-color: var(--blue); }
.g-ev-warn { border-left-color: var(--yellow); }
.g-ev-err { border-left-color: var(--red); }

.g-ev-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.g-ev-body { flex: 1; min-width: 0; }
.g-ev-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.g-ev-plate {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--bright);
    letter-spacing: 1px;
}
.g-ev-type { font-size: 13px; color: var(--dim); }
.g-ev-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.g-ev-tag-daily { background: rgba(253,203,110,0.15); color: var(--yellow); }
.g-ev-tag-monthly { background: rgba(0,184,148,0.15); color: var(--green); }
.g-ev-tag-paid { background: rgba(9,132,227,0.15); color: var(--blue); }
.g-ev-tag-unknown { background: rgba(214,48,49,0.15); color: var(--red); }
.g-ev-tag-tireshop { background: rgba(253,126,20,0.15); color: #fd7e14; }

.g-ev-info { font-size: 13px; color: var(--dim); margin-top: 4px; line-height: 1.5; }
.g-ev-info strong { color: var(--bright); font-weight: 600; }
.g-ev-amount { color: var(--yellow); font-weight: 700; font-size: 15px; }

.g-ev-actions { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.g-ev-time { font-size: 13px; color: var(--dim); white-space: nowrap; flex-shrink: 0; text-align: right; }

/* ====== BUTTONS ====== */
.g-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    color: var(--bright);
}
.g-btn:active { transform: scale(0.96); }
.g-btn-green { background: var(--green); }
.g-btn-green:hover { background: #00a381; }
.g-btn-blue { background: var(--blue); }
.g-btn-blue:hover { background: #0770c4; }
.g-btn-yellow { background: #e0a800; color: #1a1a2e; }
.g-btn-yellow:hover { background: #cc9900; }
.g-btn-red { background: var(--red); }
.g-btn-red:hover { background: #b52828; }
.g-btn-ghost {
    background: var(--accent);
    border: 1px solid var(--border);
    color: var(--text);
}
.g-btn-ghost:hover { border-color: var(--blue); }
.g-btn-sm { padding: 6px 10px; font-size: 12px; }
.g-btn-block { width: 100%; justify-content: center; padding: 12px; }

/* ====== MODAL ====== */
.g-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,20,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.g-overlay.active { display: flex; }
.g-modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    width: 90%;
    max-width: 440px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
    animation: fadeScale 0.25s ease;
}
.g-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 0;
}
.g-modal-head h3 { font-size: 16px; font-weight: 700; color: var(--bright); }
.g-modal-x {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--dim);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.g-modal-x:hover { background: var(--accent); color: var(--text); }
#modal-body { padding: 16px 20px 20px; }

/* ====== FORM ====== */
.g-fg { margin-bottom: 14px; }
.g-fg label { display: block; font-size: 12px; color: var(--dim); font-weight: 600; margin-bottom: 5px; }
.g-fg input, .g-fg select {
    width: 100%;
    padding: 10px 12px;
    background: var(--accent);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.g-fg input:focus, .g-fg select:focus { border-color: var(--blue); }
.g-fg input::placeholder { color: var(--dim); }
.g-fg .g-static { font-size: 15px; font-weight: 600; color: var(--bright); padding: 6px 0; }
.g-fg .g-static.mono { font-family: var(--mono); font-size: 20px; letter-spacing: 1px; }

.g-radio-group { display: flex; flex-direction: column; gap: 8px; }
.g-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--accent);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.g-radio:hover { border-color: var(--blue); }
.g-radio.selected { border-color: var(--green); background: rgba(0,184,148,0.08); }
.g-radio input[type="radio"] { display: none; }
.g-radio-dot {
    width: 18px; height: 18px;
    border: 2px solid var(--dim);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}
.g-radio.selected .g-radio-dot { border-color: var(--green); }
.g-radio.selected .g-radio-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--green);
    border-radius: 50%;
}
.g-radio-info { flex: 1; }
.g-radio-info strong { color: var(--bright); }
.g-radio-price { font-weight: 700; color: var(--yellow); white-space: nowrap; }

.g-summary {
    padding: 14px;
    background: var(--accent);
    border-radius: 8px;
    margin-bottom: 16px;
}
.g-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--dim); margin-bottom: 6px; }
.g-summary-row:last-child { margin-bottom: 0; }
.g-summary-row strong { color: var(--bright); }
.g-summary-total { font-size: 18px; font-weight: 700; color: var(--yellow); }

.g-btns-row { display: flex; gap: 8px; }
.g-btns-row .g-btn { flex: 1; justify-content: center; }

/* ====== TOASTS ====== */
.g-toasts {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 360px;
}
.g-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--dim);
    border-radius: 8px;
    box-shadow: var(--shadow);
    animation: toastIn 0.3s ease;
    cursor: pointer;
    font-size: 13px;
}
.g-toast-green { border-left-color: var(--green); }
.g-toast-blue { border-left-color: var(--blue); }
.g-toast-yellow { border-left-color: var(--yellow); }
.g-toast-red { border-left-color: var(--red); }
.g-toast-icon { font-size: 18px; flex-shrink: 0; }
.g-toast-msg { flex: 1; color: var(--text); }
.g-toast.removing { animation: toastOut 0.3s ease forwards; }

/* ====== EXIT CARD (in modal) ====== */
.g-exit-hero {
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.g-exit-plate {
    font-family: var(--mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--bright);
    letter-spacing: 2px;
}
.g-exit-type { font-size: 14px; color: var(--dim); margin-top: 4px; }

/* ====== ANIMATIONS ====== */
@keyframes slideIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(40px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .g-header { padding: 10px 14px; gap: 8px; }
    .g-cameras { grid-template-columns: 1fr; padding: 8px 14px; gap: 8px; }
    .g-cam-feed { height: 100px; }
    .g-stats { grid-template-columns: repeat(3, 1fr); padding: 8px 14px; gap: 6px; }
    .g-stat { padding: 10px 6px; }
    .g-stat-v { font-size: 22px; }
    .g-feed-wrap { padding: 0 14px 14px; }
    .g-feed-bar { flex-direction: column; align-items: stretch; }
    .g-search { width: 100%; }
    .g-ev-plate { font-size: 17px; }
    .g-feed { max-height: 45vh; }
}

@media (max-width: 480px) {
    .g-stats { grid-template-columns: repeat(2, 1fr); }
    .g-hgroup { font-size: 12px; gap: 10px; }
    .g-ev { padding: 10px; gap: 8px; }
}

/* ====== PARKING GRID PANEL ====== */
.g-park-panel {
    margin: 0 20px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.g-park-hdr {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px; cursor: pointer; user-select: none;
    transition: background 0.15s;
}
.g-park-hdr:hover { background: rgba(255,255,255,0.03); }
.g-park-hdr-l { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.g-park-hdr-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dim); }
.g-park-meta { display: flex; gap: 16px; font-size: 12px; }
.g-park-meta span { color: var(--dim); }
.g-park-meta strong { color: var(--bright); }
.g-park-body { padding: 10px 12px 14px; }
.g-park-toggle {
    font-size: 11px; color: var(--dim); padding: 4px 10px;
    background: var(--accent); border-radius: 6px; border: 1px solid var(--border);
    cursor: pointer; font-family: var(--font); white-space: nowrap;
    transition: all 0.15s;
}
.g-park-toggle:hover { border-color: var(--blue); color: var(--text); }
.g-park-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
}
.g-spot {
    aspect-ratio: 1; min-height: 50px;
    border-radius: 6px; border: 1px solid transparent;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.18s; overflow: hidden; position: relative; padding: 2px;
}
.g-spot:active { transform: scale(0.93); }
.g-spot-free {
    background: rgba(255,255,255,0.025); border-color: rgba(255,255,255,0.06); cursor: default;
}
.g-spot-free:hover { background: rgba(255,255,255,0.05); transform: none; }
.g-spot-free .g-spot-num { font-size: 10px; color: rgba(255,255,255,0.14); font-family: var(--mono); }
.g-spot-occ { background: rgba(9,132,227,0.12); border-color: rgba(9,132,227,0.3); }
.g-spot-occ:hover { background: rgba(9,132,227,0.22); border-color: rgba(9,132,227,0.55); box-shadow: 0 0 10px rgba(9,132,227,0.2); }
.g-spot-monthly { background: rgba(255,215,0,0.09); border-color: rgba(255,215,0,0.35); }
.g-spot-monthly:hover { background: rgba(255,215,0,0.18); border-color: rgba(255,215,0,0.6); box-shadow: 0 0 10px rgba(255,215,0,0.15); }
.g-spot-icon { font-size: 15px; line-height: 1; }
.g-spot-plate {
    font-size: 7.5px; font-family: var(--mono); color: var(--text);
    text-align: center; margin-top: 2px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis; width: 100%; padding: 0 2px;
}
.g-spot-badge {
    position: absolute; top: 2px; right: 2px; font-size: 7px; font-weight: 700;
    color: #ffd700; background: rgba(255,215,0,0.2); border-radius: 3px; padding: 1px 3px; line-height: 1.2;
}
.g-park-legend {
    display: flex; gap: 16px; flex-wrap: wrap; padding: 10px 2px 0; font-size: 11px; color: var(--dim);
}
.g-park-legend-item { display: flex; align-items: center; gap: 5px; }
.g-park-legend-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.g-park-legend-dot.d-free { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
.g-park-legend-dot.d-occ  { background: rgba(9,132,227,0.2);  border: 1px solid rgba(9,132,227,0.4); }
.g-park-legend-dot.d-month{ background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.45); }

/* ====== KNOWN BADGE ====== */
.g-ev-known {
    font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 8px;
    background: rgba(162,155,254,0.13); color: #a29bfe; white-space: nowrap; cursor: pointer;
    transition: background 0.15s; border: none;
}
.g-ev-known:hover { background: rgba(162,155,254,0.25); }

/* ====== TIRESHOP FILTER BTN ====== */
.g-btn-tire { background: rgba(253,126,20,0.15); color: #fd7e14; border: 1px solid rgba(253,126,20,0.3); }
.g-btn-tire:hover { background: rgba(253,126,20,0.25); }
.g-btn-tire.muted { opacity: 0.4; }

@media (max-width: 900px) {
    .g-park-grid { grid-template-columns: repeat(8, 1fr); gap: 3px; }
    .g-spot { min-height: 42px; }
    .g-spot-icon { font-size: 12px; }
    .g-spot-plate { font-size: 6.5px; }
    .g-park-panel { margin: 0 14px 10px; }
}
@media (max-width: 600px) {
    .g-park-grid { grid-template-columns: repeat(5, 1fr); gap: 3px; }
    .g-spot { min-height: 38px; }
    .g-stats { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 400px) {
    .g-park-grid { grid-template-columns: repeat(4, 1fr); }
    .g-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ═══════════════════════════════════════
   ENTRY DIALOG STYLES
   ═══════════════════════════════════════ */

.g-ent-top { display:flex; gap:12px; margin-bottom:4px; }
.g-ent-known { background:rgba(74,158,255,.06); border:1px solid rgba(74,158,255,.2); border-radius:10px; padding:12px 14px; margin-bottom:12px; }
.g-ent-badge { display:inline-block; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; margin-bottom:8px; }
.g-ent-badge-m { background:rgba(162,155,254,.18); color:#a29bfe; border:1px solid rgba(162,155,254,.35); }
.g-ent-badge-k { background:rgba(74,158,255,.15); color:var(--blue); border:1px solid rgba(74,158,255,.3); }
.g-ent-krow { font-size:13px; margin-bottom:4px; }
.g-ent-krow a { color:inherit; }
.g-ent-s-green { color:var(--green); font-weight:600; }
.g-ent-s-yellow { color:var(--yellow); font-weight:600; }
.g-ent-s-red { color:var(--red); font-weight:600; }

.g-ent-modes { display:flex; gap:10px; margin:14px 0 4px; }
.g-ent-mode-btn {
    flex:1; display:flex; flex-direction:column; align-items:center; gap:6px;
    padding:14px 8px; background:var(--accent); border:2px solid var(--border);
    border-radius:10px; cursor:pointer; color:var(--dim); font-size:12px;
    font-weight:600; transition:all .2s; text-align:center;
}
.g-ent-mode-btn:hover { border-color:var(--purple); color:var(--text); }
.g-ent-mode-btn.active { border-color:var(--purple); color:var(--purple); background:rgba(162,155,254,.1); }
.g-ent-mico { font-size:26px; line-height:1; }
.g-ent-tire.active  { border-color:var(--yellow); color:var(--yellow); background:rgba(253,203,110,.08); }
.g-ent-daily.active { border-color:var(--blue);   color:var(--blue);   background:rgba(74,158,255,.08); }
.g-ent-monthly.active { border-color:#a29bfe; color:#a29bfe; background:rgba(162,155,254,.08); }

.g-ent-step2 { margin-top:4px; }
.g-ent-section { padding:4px 0 0; }
.g-ent-sec-lbl { font-size:11px; font-weight:700; color:var(--dim); text-transform:uppercase; letter-spacing:.8px; margin-bottom:8px; }

.g-ent-tire-sec { text-align:center; padding:16px 0; }
.g-ent-tire-ico { font-size:40px; margin-bottom:8px; }
.g-ent-tire-ttl { font-size:16px; font-weight:700; color:var(--yellow); margin-bottom:6px; }
.g-ent-tire-sub { font-size:12px; color:var(--dim); margin-bottom:16px; }

.g-day-btns { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:12px; }
.g-day-btn {
    padding:8px 12px; background:var(--accent); border:1px solid var(--border);
    border-radius:6px; cursor:pointer; color:var(--dim); font-size:12px; font-weight:600;
    transition:all .15s;
}
.g-day-btn:hover { border-color:var(--blue); color:var(--blue); }
.g-day-btn.active { background:rgba(74,158,255,.15); border-color:var(--blue); color:var(--blue); font-weight:700; }

.g-ent-price { background:rgba(74,222,128,.06); border:1px solid rgba(74,222,128,.2); border-radius:8px; padding:10px 14px; margin-bottom:12px; font-size:14px; color:var(--text); }
.g-ent-price strong { font-size:18px; color:var(--green); }

.g-ent-mon-sec { }
.g-ent-mon-badge { font-size:16px; font-weight:700; color:var(--green); margin-bottom:10px; }
.g-ent-mon-det { font-size:13px; color:var(--text); margin-bottom:5px; }
.g-ent-mon-det a { color:inherit; }

.g-ent-renewal-warn { background:rgba(253,203,110,.1); border:1px solid rgba(253,203,110,.3); border-radius:8px; padding:10px 14px; margin-bottom:12px; color:var(--yellow); font-size:13px; font-weight:600; }
