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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c12;
    color: #eef2f5;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0c12;
    z-index: -1;
    overflow: hidden;
    opacity: 0.15;
}

.matrix-column {
    position: absolute;
    top: -20px;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    line-height: 1.5;
    writing-mode: vertical-rl;
    text-orientation: upright;
    opacity: 0.2;
    animation: matrix-fall linear infinite;
    text-shadow: 0 0 8px #00ffff;
    white-space: nowrap;
}

@keyframes matrix-fall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}


.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 10;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}
.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shield {
    position: absolute;
    font-size: 50px;
    color: #00ffff;
    filter: drop-shadow(0 0 15px cyan);
    z-index: 2;
}
.earth {
    position: absolute;
    font-size: 30px;
    color: #aaffff;
    animation: rotate 10s linear infinite;
    z-index: 3;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: normal;
}
.cyber-part {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
.x-part {
    color: #ffffff;
    font-size: 1.4em;
    margin: 0 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: inline-block;
    vertical-align: middle;
}
.pert-part {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 30px;
    color: #00ffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.back-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Основная карточка с документом */
.privacy-card {
    background: rgba(16, 24, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
}

h1 span {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #00ffff;
    letter-spacing: 1px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #a0f0ff;
}

p {
    margin-bottom: 15px;
    color: #b0c8d0;
}

ul, ol {
    margin: 10px 0 20px 20px;
    color: #b0c8d0;
}

li {
    margin-bottom: 8px;
}

li strong {
    color: #00ffff;
}

.highlight {
    color: #00ffff;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    margin: 30px 0;
}

.footer-note {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-note span {
    color: #00ffff;
    animation: blink 2s infinite;
}

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

.contact-block {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}

.protected-email, .protected-tg {
    color: #00ffff;
    font-weight: 600;
}

@media (max-width: 700px) {
    .container { padding: 20px 16px; }
    .privacy-card { padding: 30px 20px; }
    h1 { font-size: 28px; }
    h2 { font-size: 20px; }
    .logo-text { font-size: 24px; }
    .shield { font-size: 40px; }
    .earth { font-size: 24px; }
}


@media (max-width: 480px) {
    .container { padding: 20px 16px; }
    .privacy-card { padding: 30px 20px; }
    h1 { 
        font-size: 20px; 
        word-break: normal;
        overflow-wrap: normal;
        max-width: 100%;
    }
    h2 { font-size: 18px; }
    .logo-text { font-size: 24px; }
    .shield { font-size: 40px; }
    .earth { font-size: 24px; }
}
