/* Intranet Specific Styles - Extends Main Theme */
@import url('../../assets/css/style.css'); /* Import main styles if needed, or just standard */

/* Cyberpunk Override for Intranet */
body {
    background-color: #050505;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    color: #e0e0e0;
    font-family: 'Rajdhani', sans-serif;
}

.intranet-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.intranet-card:hover {
    border-color: #00F0FF;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
    transform: translateY(-2px);
}

.auth-lock-icon {
    font-size: 4rem;
    color: #00F0FF;
    text-shadow: 0 0 20px #00F0FF;
    animation: pulse-slow 3s infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.8; text-shadow: 0 0 20px #00F0FF; }
    50% { opacity: 1; text-shadow: 0 0 35px #00F0FF; }
}

.generator-preview {
    border: 2px dashed #333;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
