/* * ⚖️ NetOS Legal Suite V2.0 
 * High-End Cyberpunk Legal Pages
 */

 :root {
    --legal-red: #ff0033;
    --legal-cyan: #00aaff;
    --legal-green: #00ff88;
    --legal-bg-dark: #080810;
    --legal-glass-bg: rgba(20, 20, 30, 0.6);
    --legal-glass-border: rgba(255, 255, 255, 0.1);
    --legal-font-head: 'Oswald', sans-serif;
    --legal-font-body: 'Saira', sans-serif;
}

/* --- WRAPPER & BACKGROUND --- */
.cyber-legal-wrapper {
    position: relative;
    min-height: 100vh;
    padding: 80px 20px;
    background: var(--legal-bg-dark);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Dynamic Grid Background */
.cyber-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 50% 30%, #151525 0%, #050505 100%);
    pointer-events: none;
}

.moving-grid {
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(800px) rotateX(60deg);
    animation: legalGridScroll 40s linear infinite;
    opacity: 0.4;
}

@keyframes legalGridScroll {
    0% { transform: perspective(800px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(800px) rotateX(60deg) translateY(60px); }
}

/* --- CONTAINER & HEADER --- */
.cyber-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

.netos-header-group {
    text-align: center;
    margin-bottom: 60px;
}

.hex-icon-wrapper {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.2);
}

.hex-content {
    transform: rotate(-45deg);
    font-size: 2rem;
    color: var(--legal-cyan);
    filter: drop-shadow(0 0 5px var(--legal-cyan));
}

.netos-main-title {
    font-family: var(--legal-font-head);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.text-highlight {
    color: var(--legal-red);
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.6);
}

.netos-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--legal-cyan), transparent);
    margin: 20px auto 0;
}

/* --- MAIN GLASS PANEL --- */
.cyber-main-panel {
    background: var(--legal-glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--legal-glass-border);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

/* Decorative Top Bar */
.cyber-main-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--legal-red), var(--legal-cyan));
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    opacity: 0.7;
}

/* --- TYPOGRAPHY & SECTIONS --- */
.legal-content h3 {
    color: var(--legal-cyan);
    font-family: var(--legal-font-head);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-content h3::before {
    content: '';
    display: block;
    width: 6px; height: 24px;
    background: var(--legal-red);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--legal-red);
}

.legal-content p {
    font-family: var(--legal-font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

/* --- LISTS --- */
.legal-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
    margin-bottom: 25px;
}

.legal-content ul li {
    position: relative;
    padding: 12px 15px 12px 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-family: var(--legal-font-body);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.legal-content ul li::before {
    content: '\f054'; /* FontAwesome chevron */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--legal-red);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.legal-content ul li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--legal-red);
    transform: translateX(5px);
}

.legal-content ul li:hover::before {
    transform: translateY(-50%) translateX(3px);
}

/* --- ALERT BOX (Zero Data) --- */
.alert-box {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
}

.alert-box i {
    font-size: 1.8rem;
    color: var(--legal-green);
    filter: drop-shadow(0 0 5px var(--legal-green));
}

.alert-box span {
    font-family: var(--legal-font-body);
    font-size: 1rem;
    color: #e0fff0;
}

/* --- WARRANTY GRID --- */
.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.w-item {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.w-item:hover {
    border-color: var(--legal-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(30, 30, 45, 0.9);
}

.w-item strong {
    display: block;
    color: var(--legal-red);
    font-family: var(--legal-font-head);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.w-item span {
    color: #fff;
    font-family: var(--legal-font-body);
    font-size: 0.95rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .cyber-legal-wrapper { padding: 40px 15px; }
    .cyber-main-panel { padding: 30px 20px; }
    .netos-main-title { font-size: 2.5rem; }
    .legal-content h3 { font-size: 1.2rem; margin-top: 30px; }
    .warranty-grid { grid-template-columns: 1fr; }
    .alert-box { flex-direction: column; text-align: center; }
}