:root {
    --neon-green: #00ff41;
    --neon-blue: #00d2ff;
    --bg-dark: #0a0a0c;
    --glass: rgba(20, 20, 25, 0.96);
    --glass-border: rgba(255, 255, 255, 0.05); /* Еле заметная для объема */
    /* Увеличенная база шрифта */
    font-size: clamp(14px, 1.2vw + 5px, 18px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg-dark);
    background-image: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%);
    color: #e0e0e0;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    display: flex; flex-direction: column; min-height: 100vh;
}

/* ШАПКА */
header {
    width: 100%; background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
    position: sticky; top: 0; z-index: 1000; padding: 12px 0;
}

.nav-container { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

.logo-title {
    font-family: 'Orbitron'; font-size: 1.7rem; color: #fff;
    text-shadow: 0 0 10px var(--neon-blue); text-decoration: none;
}

.top-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin-top: 10px; }

.nav-item {
    font-family: 'Orbitron'; font-size: 0.75rem; color: #aaa;
    text-decoration: none; padding: 6px 14px; text-transform: uppercase;
    position: relative; transition: 0.3s;
}

.nav-item.active { color: var(--neon-green); }
.nav-item.active::after {
    content: ''; position: absolute; bottom: 0; left: 20%; width: 60%;
    height: 2px; background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green);
}

/* СЕРЕДИНА */
.container { width: 95%; max-width: 900px; margin: 20px auto; }

.card {
    background: var(--glass);
    border: none; /* УБРАЛИ РАМКУ ТУТ */
    border-radius: 12px; padding: 18px 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7); /* Усилили тень для объема без рамки */
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Orbitron'; font-size: 1rem; color: var(--neon-blue);
    margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
    text-transform: uppercase; border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
}

/* СТРОКИ ИНФО (ПЛОТНО) */
.info-row {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.02);
    padding: 12px 16px; border-radius: 8px; margin-bottom: 10px;
    border: none; /* УБРАЛИ РАМКУ ТУТ */
}

.info-group {
    display: flex; align-items: baseline;
    gap: 10px;
    flex-grow: 1;
}

.info-label {
    font-family: 'Orbitron'; font-size: 0.85rem; color: #fff;
    font-weight: 700; white-space: nowrap;
}

.info-value {
    font-family: 'Rajdhani'; font-size: 1.1rem; color: #a0a0a0;
    word-break: break-all;
}

.copy-trigger {
    color: var(--neon-blue); cursor: pointer; padding-left: 12px;
    font-size: 0.95rem; opacity: 0.7; position: relative;
}
.copy-trigger:hover { opacity: 1; }

.copy-tooltip {
    position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
    background: var(--neon-green); color: #000; font-family: 'Orbitron';
    font-size: 0.6rem; padding: 2px 8px; border-radius: 3px; opacity: 0; transition: 0.3s;
}
.copy-tooltip.show { opacity: 1; top: -30px; }

/* БЛОК КОМАНДЫ */
pre {
    background: #050507; color: #888; padding: 18px; border-radius: 8px;
    border: none; /* УБРАЛИ РАМКУ ТУТ */
    font-family: monospace;
    font-size: 0.95rem; white-space: pre-wrap; word-break: break-all;
}

footer {
    margin-top: auto; text-align: center; padding: 25px;
    color: #444; font-family: 'Orbitron'; font-size: 0.75rem;
}

/* МОБИЛЬНЫЙ ФИКС */
@media (max-width: 600px) {
    .info-group { flex-wrap: wrap; gap: 5px; }
    .info-label { font-size: 0.8rem; }
    .info-value { font-size: 1rem; }
}

/* --- ФИКС БУКВЫ Т НА ГРАФИКАХ --- */
.ct-label.ct-vertical {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap !important;
    padding-right: 15px !important;
    text-align: right;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem !important;
    width: 80px !important;
}
.ct-grids line.ct-vertical { stroke: rgba(255,255,255,0.05) !important; }
