

/* Start:/local/components/kit/pdo/templates/page_terminal/style.css?17801603413919*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0f0b;
    background-image: radial-gradient(circle at 25% 40%, rgba(0, 255, 0, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    font-family: 'Fira Code', 'Courier New', monospace;
    color: #ccffcc;
    line-height: 1.5;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* терминальное окно */
.policy-terminal {
    background: #0f140fcc;
    backdrop-filter: blur(2px);
    border: 1px solid #2a5a2a;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.2s ease;
}

.policy-terminal:hover {
    border-color: #5f9;
    box-shadow: 0 0 12px rgba(80, 200, 80, 0.2);
}

.term-header {
    background: #0a1a0a;
    padding: 0.75rem 1.2rem;
    border-bottom: 1px solid #2a6a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.term-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #5f9;
}

.term-buttons {
    display: flex;
    gap: 8px;
}

.term-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2a5a2a;
    border: 1px solid #0f0;
}

.term-body {
    padding: 1.5rem;
}

.term-prompt {
    color: #8f8;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    border-bottom: 1px dashed #2a6e2a;
    padding-bottom: 0.6rem;
}

.prompt-sign {
    font-weight: bold;
}

.blink-cursor {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #5f9;
    vertical-align: middle;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ascii-art для шапки */
.ascii-data {
    font-size: 0.7rem;
    white-space: pre;
    text-align: center;
    color: #8f8;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* блоки с информацией */
.info-block {
    background: #0a120a;
    border-left: 4px solid #5f9;
    padding: 1rem;
    margin: 1rem 0;
}

.info-block h3 {
    color: #5f9;
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.data-list {
    list-style: none;
    padding-left: 1rem;
}

.data-list li {
    margin-bottom: 0.4rem;
    position: relative;
}

.data-list li::before {
    content: ">";
    color: #2a6e2a;
    position: absolute;
    left: -1rem;
}

/* акцент на важное */
.highlight {
    color: #8f8;
    background: #1a2a1a;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-weight: bold;
}

/* кнопки согласия */
.consent-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.consent-btn {
    background: transparent;
    border: 1px solid #5f9;
    color: #5f9;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-family: monospace;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
}

.consent-btn:hover {
    background: #2e6e2e;
    color: #000;
    box-shadow: 0 0 6px #5f9;
}

.consent-btn-decline {
    border-color: #8e2a2a;
    color: #f66;
}

.consent-btn-decline:hover {
    background: #6e2a2a;
    color: #000;
    box-shadow: 0 0 6px #f66;
}

.status-message {
    margin-top: 1rem;
    font-size: 0.75rem;
    text-align: center;
    color: #8f8;
    border-top: 1px solid #2a6e2a;
    padding-top: 0.8rem;
}

footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.7rem;
    color: #6f6;
}

@media (max-width: 700px) {
    .term-body {
        padding: 1rem;
    }
    .policy-terminal .ascii-data {
        font-size: 0.55rem;
    }
}

@media (max-width: 400px) {
    .policy-terminal .ascii-data {
        font-size: 0.5rem;
    }
}
/* End */
/* /local/components/kit/pdo/templates/page_terminal/style.css?17801603413919 */
