:root {
    --neon-cyan: #4a9eff;
    --neon-pink: #ff6b6b;
    --dark-bg: #0a0a1a;
    --card-bg: #0F142D;
    --border-glow: rgba(74, 158, 255, 0.5);
    --intense-glow: rgba(74, 158, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: #e0e0ff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    padding: 2rem 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, p, label, span, div {
    color: #e0e0ff !important;
}

*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: #0a0f1e; border-left: 1px solid rgba(74, 158, 255, 0.1); }
*::-webkit-scrollbar-thumb { background-color: #4a9eff; border-radius: 8px; border: 2px solid #0a0f1e; background-clip: padding-box; }
*::-webkit-scrollbar-thumb:hover { background-color: #00ffff; box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
*::-webkit-scrollbar-corner { background: #0a0f1e; }

#app { 
    width: 100%; 
    max-width: 1400px; 
    margin: auto; 
    padding: 20px; 
    position: relative; 
    z-index: 10; 
}

.container { 
    width: 100%; 
    max-width: 1300px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 10; 
}

.container h1 { 
    font-size: 2rem; 
    color: var(--neon-cyan) !important; 
    text-align: center; 
    text-shadow: 0 0 15px rgba(74, 158, 255, 0.5); 
    margin-bottom: 8px; 
    font-weight: bold; 
}

.subtitle { 
    text-align: center; 
    color: #8dabf0 !important; 
    margin-bottom: 2rem; 
    font-size: 1rem; 
    border-bottom: 1px dashed var(--neon-cyan); 
    display: inline-block; 
    padding-bottom: 6px; 
}

.page { 
    display: none; 
    animation: fadeIn 0.4s ease-out forwards; 
    transition: opacity 0.4s ease-in-out;
}

.page.active { 
    display: block; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(15px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.animated-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: 
        linear-gradient(rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.95)),
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(74, 158, 255, 0.05) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(74, 158, 255, 0.05) 50px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    animation: moveGrid 20s linear infinite; z-index: -2; pointer-events: none;
}
@keyframes moveGrid { 100% { background-position: 0 0, 0 50px, 50px 0; } }

.radar-scan {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(74, 158, 255, 0.15) 50%, transparent 100%);
    background-size: 100% 200%; animation: radarSweep 6s infinite linear;
    z-index: -1; pointer-events: none;
}
@keyframes radarSweep { 0% { background-position: 0 -100%; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { background-position: 0 200%; opacity: 0; } }

.data-stream { position: fixed; top: -150px; width: 1px; background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent); opacity: 0.4; z-index: -2; pointer-events: none; }

.orb-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; will-change: transform; animation: float 8s infinite ease-in-out alternate; }
.orb:nth-child(1) { width: 45vw; height: 45vw; background: #4a9eff; top: -10%; left: -10%; animation-duration: 9s; }
.orb:nth-child(2) { width: 40vw; height: 40vw; background: #ff6b6b; bottom: -10%; right: -10%; animation-duration: 7s; }
.orb:nth-child(3) { width: 35vw; height: 35vw; background: #9d4edd; top: 30%; left: 30%; animation-duration: 11s; }
@keyframes float { 0% { transform: translate3d(0, 0, 0) scale(1); } 33% { transform: translate3d(15vw, -15vh, 0) scale(1.1); } 66% { transform: translate3d(-15vw, 15vh, 0) scale(0.9); } 100% { transform: translate3d(-20vw, -20vh, 0) scale(1.2); } }

.cyber-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark-bg); z-index: 9999999; justify-content: center; align-items: center; font-family: 'Courier New', Courier, monospace; overflow: hidden; }
.cyber-modal.active { display: flex; }
.cyber-modal::after { content: " "; display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06)); z-index: 2; background-size: 100% 2px, 3px 100%; pointer-events: none; }
.cyber-content { background: rgba(10, 10, 20, 0.8); border: 2px solid var(--neon-cyan); padding: 40px; max-width: 600px; width: 90%; text-align: center; position: relative; z-index: 5; box-shadow: 0 0 30px var(--neon-cyan), inset 0 0 20px var(--neon-cyan); clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%); }

.glitch-text { font-size: 2.5rem; font-weight: bold; color: white; text-shadow: 3px 3px var(--neon-pink), -3px -3px var(--neon-cyan); text-transform: uppercase; margin-bottom: 20px; animation: glitch-anim 0.3s infinite; }
.terminal-box { background: rgba(74, 158, 255, 0.05); border-left: 5px solid var(--neon-pink); padding: 20px; text-align: left; margin: 20px 0; font-size: 0.9rem; color: var(--neon-cyan); }
#matrix-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.3; }

.glitch-btn { background: transparent; border: 1px solid var(--neon-pink); color: var(--neon-pink); padding: 10px 30px; font-weight: bold; transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); text-transform: uppercase; letter-spacing: 5px; cursor: pointer; }
.glitch-btn:hover { background: var(--neon-pink); color: black; box-shadow: 0 0 25px var(--neon-pink); }
.glitch-btn:active { transform: scale(0.95); box-shadow: 0 0 10px var(--neon-pink); }
@keyframes glitch-anim { 0%, 100% { transform: translate(0); } 20% { transform: translate(-3px, 2px); } 40% { transform: translate(-3px, -2px); } 60% { transform: translate(3px, 2px); } 80% { transform: translate(3px, -2px); } }

.preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: var(--dark-bg); z-index: 99999999; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s ease, visibility 0.6s; }
.preloader.fade-out { opacity: 0; visibility: hidden; }
.loader-ring { width: 50px; height: 50px; border: 3px solid rgba(74, 158, 255, 0.1); border-top-color: var(--neon-cyan); border-bottom-color: var(--neon-pink); border-radius: 50%; animation: spin-ring 1s linear infinite; }
@keyframes spin-ring { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.glass-panel { background-color: var(--card-bg); border-radius: 15px; padding: 30px; box-shadow: 0 0 25px var(--border-glow); border: 1px solid rgba(74, 158, 255, 0.2); border-left: 4px solid var(--neon-cyan); backdrop-filter: blur(10px); }
.login-container { max-width: 400px; margin: 100px auto; padding: 40px; text-align: center; }

.hero-glitch { font-size: 2.5rem; font-weight: bold; text-transform: uppercase; color: var(--neon-cyan) !important; letter-spacing: 2px; position: relative; display: inline-block; white-space: nowrap; z-index: 2; text-shadow: 0 0 15px rgba(74, 158, 255, 0.5); }
.hero-glitch::before, .hero-glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; white-space: nowrap; }
.hero-glitch::before { color: var(--neon-pink) !important; z-index: -1; animation: glitch-anim-1 2s infinite linear alternate-reverse; }
.hero-glitch::after { color: #00ffcc !important; z-index: -2; animation: glitch-anim-2 2.5s infinite linear alternate-reverse; }
@keyframes glitch-anim-1 { 0% { clip-path: inset(20% 0 80% 0); transform: translate(-2px, 1px); } 20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); } 40% { clip-path: inset(40% 0 50% 0); transform: translate(-2px, 2px); } 60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); } 80% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 1px); } 100% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -1px); } }
@keyframes glitch-anim-2 { 0% { clip-path: inset(10% 0 60% 0); transform: translate(2px, -1px); } 20% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 2px); } 40% { clip-path: inset(30% 0 20% 0); transform: translate(2px, -2px); } 60% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 1px); } 80% { clip-path: inset(20% 0 50% 0); transform: translate(2px, -1px); } 100% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); } }

.glowing-text { color: var(--neon-cyan) !important; text-shadow: 0 0 10px var(--neon-cyan), 0 0 25px var(--neon-cyan); letter-spacing: 2px; margin-bottom: 20px; }

.input-group { margin-bottom: 20px; }
input, textarea, select { width: 100%; padding: 12px 15px; background-color: #1a1f3d; border: 2px solid #2a3a6a; border-radius: 8px; color: #e0e0ff !important; outline: none; transition: all 0.3s ease; font-size: 16px; }
input:focus, textarea:focus { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(74, 158, 255, 0.6); background-color: #151a30; }
input::placeholder, textarea::placeholder { color: #8a9bb8; }

.glowing-btn, .pulse-btn { background-color: #2a3a6a; border: 2px solid var(--neon-cyan); color: var(--neon-cyan) !important; padding: 12px 30px; font-size: 16px; font-weight: bold; border-radius: 8px; transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); text-transform: uppercase; letter-spacing: 1px; position: relative; overflow: hidden; display: inline-block; cursor: pointer; }
.glowing-btn:hover, .pulse-btn:hover { background-color: var(--neon-cyan); color: var(--card-bg) !important; box-shadow: 0 0 20px var(--intense-glow), 0 0 40px rgba(74, 158, 255, 0.4); transform: translateY(-2px); }
.glowing-btn:active, .pulse-btn:active { transform: translateY(1px) scale(0.96); box-shadow: 0 0 10px var(--border-glow); }
.glowing-btn.small { padding: 8px 15px; font-size: 14px; }
.glowing-btn.secondary { border-color: #ffcc00; color: #ffcc00 !important; }
.glowing-btn.secondary:hover { background-color: #ffcc00; color: var(--card-bg) !important; box-shadow: 0 0 20px #ffcc00, 0 0 40px rgba(255, 204, 0, 0.4); }
.glowing-btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.pulse-btn { animation: neonPulse 2s infinite; }
@keyframes neonPulse { 0% { box-shadow: 0 0 10px rgba(74, 158, 255, 0.2); } 50% { box-shadow: 0 0 20px rgba(74, 158, 255, 0.6), 0 0 30px rgba(74, 158, 255, 0.3); } 100% { box-shadow: 0 0 10px rgba(74, 158, 255, 0.2); } }

.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding: 20px; background-color: var(--card-bg); border-radius: 15px; box-shadow: 0 0 25px var(--border-glow); border: 1px solid rgba(74, 158, 255, 0.2); border-left: 4px solid var(--neon-cyan); }
.user-info { display: flex; align-items: center; gap: 15px; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--neon-cyan); background-color: #1a1f3d; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 0 15px var(--border-glow); }

.tab-container { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { flex: 1; padding: 15px; background-color: #1a1f3d; border: 1px solid #2a3a6a; color: #a8c7ff !important; font-weight: bold; transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); border-radius: 8px 8px 0 0; min-width: 120px; position: relative; overflow: hidden; cursor: pointer; }
.tab-btn:hover { background-color: #2a3a6a; border-color: var(--neon-cyan); color: var(--neon-cyan) !important; box-shadow: inset 0 0 10px rgba(74, 158, 255, 0.2); }
.tab-btn.active { background-color: #2a3a6a; border-bottom: 3px solid var(--neon-cyan); color: var(--neon-cyan) !important; box-shadow: 0 -5px 15px rgba(74, 158, 255, 0.3); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease-out; }

.content-container { position: relative; background-color: var(--card-bg); border-radius: 15px; padding: 30px; box-shadow: 0 0 25px var(--border-glow); border: 1px solid rgba(74, 158, 255, 0.2); border-left: 4px solid var(--neon-cyan); }

#public-viewer-container {
    width: 100%;
    background-color: #1a1f3d;
    border: 1px solid #2a3a6a;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.1);
}

#public-page-viewer {
    width: 100%;
    height: calc(100vh - 300px); 
    min-height: 500px; 
    border: none;
    border-radius: 10px;
    background: #0a0a1a;
    display: block;
}

.notepad-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.input-form { margin-bottom: 30px; padding: 25px; background-color: #1a1f3d; border-radius: 10px; border: 1px solid #2a3a6a; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.input-form.hidden { display: none; }
.input-form h3 { color: var(--neon-cyan) !important; margin-bottom: 20px; border-bottom: 2px dashed var(--neon-cyan); padding-bottom: 10px; }
.input-form textarea { min-height: 300px; font-size: 18px; line-height: 1.8; resize: vertical; }
.form-buttons { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.form-buttons button { flex: 1; padding: 12px 20px; font-size: 16px; }

.items-list { display: flex; flex-direction: column; gap: 15px; }
.item-card { background-color: #1a1f3d; border: 1px solid #2a3a6a; border-radius: 10px; padding: 20px; position: relative; overflow: hidden; transform-style: preserve-3d; }
.item-card h4 { color: var(--neon-cyan) !important; margin-bottom: 10px; word-wrap: break-word; }
.item-card p { color: #a8c7ff !important; margin-bottom: 15px; white-space: pre-wrap; word-wrap: break-word; font-family: 'Courier New', monospace; line-height: 1.5; padding: 15px; background-color: var(--card-bg); border-radius: 5px; border-left: 3px solid var(--neon-cyan); }
.item-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; position: relative; z-index: 5; }

.copy-btn {
    background: #2a3a6a;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan) !important;
    border-radius: 40px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: monospace;
    z-index: 3;
}
.item-card .copy-btn {
    margin-right: auto;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
}
.sop-card .copy-btn {
    position: absolute;
    top: 12px;
    right: 14px;
}
.copy-btn:hover {
    background: var(--neon-cyan);
    color: var(--card-bg) !important;
    box-shadow: 0 0 15px var(--neon-cyan);
}
.copy-btn:active {
    transform: scale(0.92);
}
.copy-btn.copied {
    background: #2ecc71;
    color: var(--card-bg) !important;
    border-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.cyber-menu-link { display: block; padding: 8px 15px; margin: 5px 0; background-color: #1a1f3d; border: 1px solid #2a3a6a; border-radius: 5px; color: #a8c7ff !important; text-decoration: none; transition: all 0.2s ease; position: relative; overflow: hidden; }
.cyber-menu-link:hover { background-color: #2a3a6a; border-color: var(--neon-cyan); color: var(--neon-cyan) !important; box-shadow: 0 0 15px rgba(74, 158, 255, 0.5); transform: translateX(8px); }

.note-modal, .modal, .custom-alert { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 2000; justify-content: center; align-items: center; backdrop-filter: blur(5px); }
.note-modal.active, .modal.active, .custom-alert.active { display: flex; animation: fadeIn 0.3s ease; }
.note-modal-content { max-width: 90%; max-height: 90%; width: 800px; background-color: var(--card-bg); border: 2px solid var(--neon-cyan); border-radius: 15px; padding: 30px; position: relative; box-shadow: 0 0 40px rgba(74, 158, 255, 0.6); overflow-y: auto; }
.note-modal-close { position: absolute; top: 10px; right: 20px; color: var(--neon-cyan); font-size: 30px; background: transparent; border: none; cursor: pointer; transition: 0.2s; }
.note-modal-close:hover { text-shadow: 0 0 15px var(--neon-cyan); transform: scale(1.1); }

.toast { position: fixed; bottom: 20px; right: 20px; background-color: var(--card-bg); border: 2px solid var(--neon-cyan); border-radius: 10px; padding: 15px 25px; color: var(--neon-cyan) !important; box-shadow: 0 0 25px rgba(74, 158, 255, 0.8); animation: slideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); z-index: 1500; font-weight: bold; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.sync-status { position: fixed; top: 20px; right: 20px; background-color: var(--card-bg); border: 2px solid var(--neon-cyan); border-radius: 20px; padding: 8px 15px; color: var(--neon-cyan) !important; font-size: 12px; z-index: 1000; display: none; box-shadow: 0 0 15px var(--neon-cyan); }
.sync-status.active { display: block; animation: pulse 2s infinite; }

.copy-indicator { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(10, 10, 26, 0.95); border: 2px solid var(--neon-cyan); border-radius: 50px; padding: 20px 40px; color: var(--neon-cyan); font-size: 24px; font-weight: bold; z-index: 9999; animation: pulseCopy 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); pointer-events: none; text-align: center; box-shadow: 0 0 40px rgba(74, 158, 255, 0.8); }
@keyframes pulseCopy { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

.loading-spinner { border: 3px solid rgba(74, 158, 255, 0.3); border-radius: 50%; border-top: 3px solid var(--neon-cyan); width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 20px auto; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.error-message { color: var(--neon-pink) !important; margin-top: 10px; font-size: 14px; text-shadow: 0 0 8px var(--neon-pink); }
.success-message { color: #2ecc71 !important; margin-top: 10px; font-size: 14px; text-shadow: 0 0 8px #2ecc71; }

.global-click-ripple { position: fixed; width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle, rgba(74, 158, 255, 0.6) 0%, rgba(74, 158, 255, 0) 70%); pointer-events: none; transform: translate(-50%, -50%) scale(0); animation: smooth-burst 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; z-index: 999999; mix-blend-mode: screen; }
@keyframes smooth-burst { 0% { transform: translate(-50%, -50%) scale(0); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } }

.alert-card { background: var(--card-bg); border-left: 6px solid var(--neon-pink); padding: 2rem; border-radius: 28px; max-width: 400px; text-align: center; box-shadow: 0 20px 35px rgba(0,0,0,0.5), 0 0 0 1px rgba(255, 51, 102, 0.3); }
.alert-card h3 { color: var(--neon-pink) !important; font-size: 1.8rem; margin-bottom: 1rem; }
.alert-btn { background: var(--neon-pink); border: none; color: white !important; padding: 0.6rem 1.8rem; border-radius: 60px; font-weight: bold; cursor: pointer; }

.golden-rules { background: rgba(255, 215, 0, 0.05); border: 1.5px solid rgba(255, 215, 0, 0.6); border-radius: 36px; padding: 1.8rem; text-align: center; margin-bottom: 2.5rem; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
.golden-rules h2 { color: #ffdf70 !important; font-size: 1.8rem; text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
.golden-rules p { font-size: 1.3rem; font-weight: bold; color: #ffe1a0 !important; margin-top: 0.5rem; }

.accordion { background: var(--card-bg); border-radius: 20px; margin-bottom: 1rem; border: 1px solid rgba(74, 158, 255, 0.25); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.accordion-header { padding: 1.2rem 1.6rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-radius: 20px; transition: background 0.2s; }
.accordion-header:hover { background: rgba(74, 158, 255, 0.15); }
.accordion-icon { font-size: 1.8rem; color: var(--neon-cyan) !important; transition: transform 0.25s; }
.accordion-icon.active { transform: rotate(45deg); color: var(--neon-pink) !important; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-content-inner { padding: 0.5rem 1.8rem 1.8rem 1.8rem; border-top: 1px solid rgba(74, 158, 255, 0.2); }

.section-header {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--neon-cyan);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    color: var(--neon-cyan) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
    font-weight: bold;
}

.section-desc {
    font-size: 0.9rem;
    color: var(--neon-pink);
    font-weight: 500;
}

.section-icon { 
    background: #1a1f3d; 
    width: 34px; 
    height: 34px; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    color: var(--neon-cyan) !important; 
    border: 1px solid var(--neon-cyan); 
    box-shadow: 0 0 8px rgba(74, 158, 255, 0.4); 
}

.point-list { counter-reset: point; list-style: none; margin-top: 10px; }
.point-item { counter-increment: point; margin-bottom: 1.2rem; padding-left: 1.8rem; position: relative; color: #d6e3ff !important; }
.point-item:before { content: counter(point) "."; position: absolute; left: 0; color: var(--neon-cyan) !important; font-weight: bold; font-size: 1rem; text-shadow: 0 0 5px var(--neon-cyan); }
.sub-point { margin-left: 1.2rem; font-size: 0.95rem; color: #b9ceff !important; margin-top: 6px; }

.note-box { background: rgba(74, 158, 255, 0.1); padding: 0.8rem 1.2rem; border-radius: 14px; margin: 10px 0; border-left: 3px solid var(--neon-cyan); font-size: 0.9rem; color: #bfd6ff !important; }
.warning-box { background: rgba(255, 107, 107, 0.1); border-left: 3px solid var(--neon-pink); padding: 0.8rem 1.2rem; border-radius: 14px; margin: 10px 0; font-size: 0.9rem; color: #ffbfbf !important; }
.example-box { background: rgba(255, 193, 7, 0.1); border-left: 3px solid #ffc107; padding: 0.8rem 1.2rem; border-radius: 14px; font-family: 'Courier New', monospace; font-size: 0.9rem; color: #ffe2a4 !important; margin-top: 8px; }

.penalty-section { background: rgba(74, 158, 255, 0.05); border: 1px solid var(--neon-cyan); border-radius: 28px; padding: 1.8rem; margin: 2rem 0; box-shadow: 0 0 20px rgba(74, 158, 255, 0.2), inset 0 0 10px rgba(74, 158, 255, 0.1); }
.penalty-section h3 { color: var(--neon-cyan) !important; text-align: center; font-size: 1.7rem; margin-bottom: 1.5rem; text-shadow: 0 0 15px rgba(74, 158, 255, 0.6); }
.penalty-table { width: 100%; border-collapse: collapse; background: var(--card-bg); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6); border: 1px solid rgba(74, 158, 255, 0.3); }
.penalty-table th { background: #1a1f3d; color: var(--neon-cyan) !important; padding: 14px; text-align: left; border-bottom: 2px solid var(--neon-cyan); text-transform: uppercase; letter-spacing: 1px; }
.penalty-table td { padding: 14px; border-bottom: 1px solid #2a3a6a; color: #c2d6ff !important; }
.penalty-table tr:last-child td { border-bottom: none; }

.final-note, .legal-footer { background: var(--card-bg); border: 1px solid var(--neon-cyan); border-radius: 28px; padding: 1.8rem; text-align: center; margin-top: 2rem; box-shadow: 0 0 20px rgba(74, 158, 255, 0.1); }
.legal-footer { margin-top: 60px; padding: 20px 0; border: none; border-top: 1px solid rgba(74, 158, 255, 0.3); border-radius: 0; color: #8dabf0; font-size: 0.85rem; }

.footer { text-align: center; font-size: 0.8rem; color: #6279a8 !important; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #233055; margin-bottom: 2rem; }

.sop-card {
    background: var(--card-bg);
    border: 1px solid var(--neon-cyan);
    border-radius: 24px;
    padding: 20px 24px;
    margin-bottom: 30px;
    box-shadow: 0 0 25px var(--border-glow);
    transition: 0.2s;
}

.sop-card h2 {
    color: var(--neon-cyan);
    border-left: 6px solid var(--neon-pink);
    padding-left: 18px;
    margin: 10px 0 20px 0;
    font-size: 1.7rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.sop-card h3 {
    color: var(--neon-pink);
    margin: 20px 0 12px 0;
    font-size: 1.4rem;
    border-bottom: 2px dashed var(--neon-pink);
    display: inline-block;
}

.sop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 18px;
    margin: 18px 0 12px;
}

.sop-item {
    background: #1a1f3d;
    border-radius: 20px;
    padding: 16px 18px;
    border: 1px solid #2a3a6a;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.sop-item:hover {
    transform: translateY(-3px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.5);
    background: #20274a;
}

.number, .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.number {
    background: #2a3a6a;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}

.check {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.content {
    flex: 1;
    font-size: 0.96rem;
    font-weight: 500;
    color: #e2e8ff;
    word-break: break-word;
    padding-right: 60px;
    line-height: 1.45;
}

.highlight-yellow, .highlight-red { color: var(--neon-pink); font-weight: 600; text-shadow: 0 0 5px rgba(255, 107, 107, 0.5); }
.highlight-blue { color: var(--neon-cyan); font-weight: bold; }
.step-box { background: rgba(74, 158, 255, 0.05); border-radius: 18px; padding: 12px 18px; margin-top: 12px; font-size: 0.9rem; border-left: 4px solid var(--neon-cyan); }

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(74, 158, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.4), inset 0 0 10px rgba(74, 158, 255, 0.1);
}

.game-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-bottom: 3px solid var(--neon-cyan);
    transition: opacity 0.3s ease, border-color 0.3s;
}

.game-card:hover img {
    opacity: 0.95;
    border-bottom-color: var(--neon-pink);
}

.game-title {
    padding: 12px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #e0e0ff;
}

@media (max-width: 768px) { 
    .tab-container { flex-direction: column; } 
}