/* Custom Properties */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --accent-color: #ff6b35;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Cyber Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 153, 204, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

/* Typography */
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Navigation */
.cyber-nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.cyber-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--primary-color) !important;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cyber-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 53, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 153, 204, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Buttons */
.btn-cyber {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cyber:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    color: white;
}

.btn-outline-cyber {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-cyber:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-card);
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.cyber-globe {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 
        inset 0 0 50px rgba(0, 212, 255, 0.2),
        0 0 50px rgba(0, 212, 255, 0.3);
}

.globe-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        conic-gradient(from 0deg, transparent 0deg, rgba(0, 212, 255, 0.1) 90deg, transparent 180deg);
    animation: counterRotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Mission Section */
.mission-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.mission-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mission-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Quick Actions */
.quick-actions {
    background: var(--darker-bg);
}

.action-card {
    display: block;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
}

.action-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

.action-card h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.action-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Accessibility Toolbar */
.accessibility-toolbar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accessibility-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.accessibility-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Footer */
.cyber-footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(0, 212, 255, 0.2);
    margin: 2rem 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .cyber-globe {
        width: 150px;
        height: 150px;
    }
    
    .floating-card {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .accessibility-toolbar {
        right: 10px;
    }
    
    .accessibility-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* High Contrast Mode */
.high-contrast {
    --primary-color: #ffff00;
    --secondary-color: #ffffff;
    --accent-color: #ff0000;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --card-bg: rgba(255, 255, 255, 0.1);
    --text-light: #ffffff;
    --text-muted: #ffffff;
}

/* Large Font Mode */
.large-font {
    font-size: 1.2em;
}

.large-font .hero-title {
    font-size: 4rem;
}

.large-font .section-title {
    font-size: 3rem;
}

/* Animation for counting numbers */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number.animate {
    animation: countUp 0.5s ease-out;
}

/* Report Page Styles */
.hero-section-small {
    min-height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.emergency-alert .alert {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    padding: 1rem;
    font-size: 1.1rem;
}

.report-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.report-card.urgent {
    border-color: var(--accent-color);
}

.report-card.urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.report-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.report-card.urgent .report-icon {
    background: var(--gradient-secondary);
}

.report-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.report-card.urgent h4 {
    color: var(--accent-color);
}

.report-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Form Styles */
.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.cyber-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.cyber-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.cyber-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-check-input {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Guide Steps */
.guide-steps {
    margin-top: 3rem;
}

.guide-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guide-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 25px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

/* Learn Page Styles */
.topic-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.topic-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.resource-link i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

/* Stories Page Styles */
.story-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
}

.story-meta h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.story-meta .story-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-content {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* 3D Elements */
.cyber-cube {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(45deg);
    animation: cubeRotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
}

.face-front { transform: translateZ(50px); }
.face-back { transform: translateZ(-50px) rotateY(180deg); }
.face-right { transform: translateX(50px) rotateY(90deg); }
.face-left { transform: translateX(-50px) rotateY(-90deg); }
.face-top { transform: translateY(-50px) rotateX(90deg); }
.face-bottom { transform: translateY(50px) rotateX(-90deg); }

@keyframes cubeRotate {
    0% { transform: rotateX(-30deg) rotateY(0); }
    100% { transform: rotateX(-30deg) rotateY(360deg); }
}

/* 3D Button Effect */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.btn-3d::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    top: 0;
    left: 0;
    transform: translateZ(-10px);
    filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-3d:hover {
    transform: translateY(-5px) translateZ(0);
}

.btn-3d:hover::before {
    opacity: 0.5;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Matrix Rain Effect */
.matrix-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
}

.matrix-rain {
    color: var(--primary-color);
    font-family: monospace;
    font-size: 1.2rem;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 0;
    animation: matrixRain linear infinite;
}

@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Report Page Styles */
.hero-section-small {
    min-height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.emergency-alert .alert {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    padding: 1rem;
    font-size: 1.1rem;
}

.report-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.report-card.urgent {
    border-color: var(--accent-color);
}

.report-card.urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.report-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.report-card.urgent .report-icon {
    background: var(--gradient-secondary);
}

.report-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.report-card.urgent h4 {
    color: var(--accent-color);
}

.report-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Form Styles */
.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.cyber-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.cyber-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.cyber-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-check-input {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Guide Steps */
.guide-steps {
    margin-top: 3rem;
}

.guide-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guide-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 25px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

/* Learn Page Styles */
.topic-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.topic-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.resource-link i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

/* Stories Page Styles */
.story-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
}

.story-meta h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.story-meta .story-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-content {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* 3D Elements */
.cyber-cube {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(45deg);
    animation: cubeRotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
}

.face-front { transform: translateZ(50px); }
.face-back { transform: translateZ(-50px) rotateY(180deg); }
.face-right { transform: translateX(50px) rotateY(90deg); }
.face-left { transform: translateX(-50px) rotateY(-90deg); }
.face-top { transform: translateY(-50px) rotateX(90deg); }
.face-bottom { transform: translateY(50px) rotateX(-90deg); }

@keyframes cubeRotate {
    0% { transform: rotateX(-30deg) rotateY(0); }
    100% { transform: rotateX(-30deg) rotateY(360deg); }
}

/* 3D Button Effect */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.btn-3d::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    top: 0;
    left: 0;
    transform: translateZ(-10px);
    filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-3d:hover {
    transform: translateY(-5px) translateZ(0);
}

.btn-3d:hover::before {
    opacity: 0.5;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Matrix Rain Effect */
.matrix-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
}

.matrix-rain {
    color: var(--primary-color);
    font-family: monospace;
    font-size: 1.2rem;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 0;
    animation: matrixRain linear infinite;
}

@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Video Section Styles */
.video-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.video-placeholder {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/placeholder.svg?height=300&width=500');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.video-placeholder:hover::before {
    left: 100%;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.2);
}

.video-placeholder span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.video-info {
    padding: 1.5rem;
}

.video-info h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.cyber-modal {
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.cyber-modal .modal-header {
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem;
}

.cyber-modal .modal-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
}

.cyber-modal .modal-body {
    padding: 1.5rem;
}

.cyber-modal .modal-footer {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem;
}

.cyber-modal .btn-close {
    color: var(--text-light);
    filter: invert(1) brightness(2);
}

/* Cyber Visual */
.cyber-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Report Page Styles */
.hero-section-small {
    min-height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.emergency-alert .alert {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    padding: 1rem;
    font-size: 1.1rem;
}

.report-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.report-card.urgent {
    border-color: var(--accent-color);
}

.report-card.urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.report-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.report-card.urgent .report-icon {
    background: var(--gradient-secondary);
}

.report-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.report-card.urgent h4 {
    color: var(--accent-color);
}

.report-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Form Styles */
.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.cyber-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.cyber-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.cyber-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-check-input {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Guide Steps */
.guide-steps {
    margin-top: 3rem;
}

.guide-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guide-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 25px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

/* Learn Page Styles */
.topic-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.topic-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.resource-link i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

/* Stories Page Styles */
.story-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
}

.story-meta h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.story-meta .story-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-content {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* 3D Elements */
.cyber-cube {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(45deg);
    animation: cubeRotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
}

.face-front { transform: translateZ(50px); }
.face-back { transform: translateZ(-50px) rotateY(180deg); }
.face-right { transform: translateX(50px) rotateY(90deg); }
.face-left { transform: translateX(-50px) rotateY(-90deg); }
.face-top { transform: translateY(-50px) rotateX(90deg); }
.face-bottom { transform: translateY(50px) rotateX(-90deg); }

@keyframes cubeRotate {
    0% { transform: rotateX(-30deg) rotateY(0); }
    100% { transform: rotateX(-30deg) rotateY(360deg); }
}

/* 3D Button Effect */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.btn-3d::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    top: 0;
    left: 0;
    transform: translateZ(-10px);
    filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-3d:hover {
    transform: translateY(-5px) translateZ(0);
}

.btn-3d:hover::before {
    opacity: 0.5;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Matrix Rain Effect */
.matrix-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
}

.matrix-rain {
    color: var(--primary-color);
    font-family: monospace;
    font-size: 1.2rem;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 0;
    animation: matrixRain linear infinite;
}

@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Video Section Styles */
.video-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.video-placeholder {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/placeholder.svg?height=300&width=500');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.video-placeholder:hover::before {
    left: 100%;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.2);
}

.video-placeholder span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.video-info {
    padding: 1.5rem;
}

.video-info h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.cyber-modal {
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.cyber-modal .modal-header {
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem;
}

.cyber-modal .modal-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
}

.cyber-modal .modal-body {
    padding: 1.5rem;
}

.cyber-modal .modal-footer {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem;
}

.cyber-modal .btn-close {
    color: var(--text-light);
    filter: invert(1) brightness(2);
}

/* Cyber Visual */
.cyber-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Contact Page Styles */
.contact-info {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-muted);
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.contact-form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.contact-form-container h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ Styles */
.cyber-accordion {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.cyber-accordion .accordion-button {
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cyber-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.cyber-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.cyber-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.cyber-accordion .accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-light);
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* Emergency Contacts */
.emergency-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.emergency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.emergency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--accent-color);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.emergency-card h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.emergency-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .emergency-card {
        margin-bottom: 1rem;
    }
    
    .social-link {
        margin-bottom: 0.5rem;
    }
}

/* Animation for form submission */
@keyframes formSubmit {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.form-submitting {
    animation: formSubmit 0.3s ease-out;
}

/* Loading state for buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse effect for emergency cards */
.emergency-card {
    animation: emergencyPulse 3s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
}

/* Hover effects for interactive elements */
.contact-method,
.emergency-card,
.social-link {
    cursor: pointer;
}

/* Focus states for accessibility */
.contact-method:focus-within,
.emergency-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode adjustments */
.high-contrast .emergency-card {
    border-color: #ffff00;
}

.high-contrast .emergency-icon {
    background: #ffff00;
    color: #000000;
}

.high-contrast .emergency-number {
    color: #ffff00;
}

/* Contact Page Styles */
.contact-info {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h5 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0;
  color: var(--text-muted);
}

.contact-details a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.contact-form-container {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-form-container h3 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
}

/* FAQ Styles */
.cyber-accordion {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.cyber-accordion .accordion-button {
  background: transparent;
  color: var(--text-light);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cyber-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-color);
  box-shadow: none;
}

.cyber-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.cyber-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.cyber-accordion .accordion-body {
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* Emergency Contacts */
.emergency-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.emergency-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-secondary);
}

.emergency-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  border-color: var(--accent-color);
}

.emergency-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.emergency-card h5 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.emergency-number {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }

  .emergency-card {
    margin-bottom: 1rem;
  }

  .social-link {
    margin-bottom: 0.5rem;
  }
}

/* Animation for form submission */
@keyframes formSubmit {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.form-submitting {
  animation: formSubmit 0.3s ease-out;
}

/* Loading state for buttons */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Pulse effect for emergency cards */
.emergency-card {
  animation: emergencyPulse 3s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
}

/* Hover effects for interactive elements */
.contact-method,
.emergency-card,
.social-link {
  cursor: pointer;
}

/* Focus states for accessibility */
.contact-method:focus-within,
.emergency-card:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode adjustments */
.high-contrast .emergency-card {
  border-color: #ffff00;
}

.high-contrast .emergency-icon {
  background: #ffff00;
  color: #000000;
}

.high-contrast .emergency-number {
  color: #ffff00;
}

/* About Page Styles */
.cyber-visual-about {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  animation: float 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon.icon-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1.5s;
}

.floating-icon.icon-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.floating-icon.icon-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 4.5s;
}

.central-logo {
  width: 120px;
  height: 120px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  z-index: 2;
  position: relative;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Mission, Vision, Values Cards */
.mvv-section {
  background: rgba(0, 0, 0, 0.3);
}

.mvv-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.mvv-card.vision-card::before {
  background: var(--gradient-secondary);
}

.mvv-card.values-card::before {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.mvv-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
}

.mvv-card h3 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.values-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.values-list li {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.values-list strong {
  color: var(--primary-color);
}

/* Focus Section */
.focus-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.focus-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.focus-header i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.focus-header h4 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.focus-content h5 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.focus-content ul {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.focus-content li {
  margin-bottom: 0.5rem;
}

/* Location Section */
.location-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.location-feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.location-feature h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.location-feature p {
  color: var(--text-light);
  margin: 0;
}

.map-container {
  position: relative;
  height: 400px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  overflow: hidden;
}

.kenya-map {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.busia-marker {
  position: absolute;
  top: 30%;
  left: 20%;
  font-size: 2rem;
  color: var(--accent-color);
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.map-info {
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem;
  border-radius: 15px;
  color: var(--text-light);
}

.map-info h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.map-info ul {
  list-style: none;
  padding: 0;
}

.map-info li {
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.team-card h4 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.team-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 0.5rem;
  line-height: 40px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Partners Section */
.partner-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.partner-logo {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.partner-card h5 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.partner-card p {
  color: var(--text-light);
}

/* News Page Styles */
.alert-banner {
  background: rgba(255, 107, 53, 0.1);
}

.cyber-alert {
  background: var(--card-bg);
  border: 1px solid var(--accent-color);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.cyber-alert .alert-link {
  color: var(--primary-color);
}

.featured-article {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.article-image {
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-article:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-content {
  padding: 2rem;
}

.article-content h3 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-news {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
}

.sidebar-title {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.quick-update {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.quick-update:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.update-date {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  min-width: 60px;
  height: fit-content;
}

.update-content h6 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.update-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.875rem;
}

/* Alert Cards */
.alert-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.alert-card.high-priority {
  border-color: #dc3545;
}

.alert-card.medium-priority {
  border-color: #ffc107;
}

.alert-card.low-priority {
  border-color: #17a2b8;
}

.alert-card.resolved {
  border-color: #28a745;
}

.alert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.alert-priority {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

.high-priority .alert-priority {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.medium-priority .alert-priority {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.low-priority .alert-priority {
  background: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

.resolved .alert-priority {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.alert-date {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.alert-card h4 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.alert-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.alert-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* News Cards */
.news-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-secondary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-content {
  padding: 1.5rem;
}

.news-content h5 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.news-meta {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.news-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Pagination */
.cyber-pagination .page-link {
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--text-light);
  margin: 0 0.25rem;
  border-radius: 10px;
}

.cyber-pagination .page-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.cyber-pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Event Cards */
.event-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.event-date {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  min-width: 80px;
  height: fit-content;
}

.event-day {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.event-month {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.event-details h5 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.event-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-details p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
  background: rgba(0, 0, 0, 0.3);
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .cyber-input {
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.newsletter-form .cyber-input:focus {
  background: var(--card-bg);
  border-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

/* Stories Page Styles */
.impact-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.impact-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.impact-number {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.impact-card p {
  color: var(--text-muted);
  margin: 0;
}

/* Story Cards */
.story-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.featured-story {
  border: 2px solid var(--primary-color);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.story-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.story-info h4 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.story-location {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.story-category {
  background: var(--gradient-secondary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.story-content blockquote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-color);
}

.story-impact {
  background: rgba(0, 212, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.story-impact strong {
  color: var(--primary-color);
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding-top: 1rem;
}

.story-verified {
  color: #28a745;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.875rem;
}

.testimonial-content p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  color: #ffc107;
}

/* Category Cards */
.category-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
  border-color: var(--primary-color);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.category-card h4 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-count {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* Share Story Form */
.share-story-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
}

.story-form .cyber-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--text-light);
}

.story-form .cyber-input:focus {
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.story-form .form-label {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.story-form .form-text {
  color: var(--text-muted);
}

.story-form .form-check-label {
  color: var(--text-light);
}

/* Impact Highlights */
.impact-highlight {
  text-align: center;
  padding: 2rem;
}

.impact-visual {
  margin-bottom: 2rem;
}

.impact-circle {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: white;
  animation: impactPulse 3s ease-in-out infinite;
}

@keyframes impactPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.impact-highlight h4 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.impact-highlight p {
  color: var(--text-light);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

  .floating-elements {
    display: none;
  }

  .central-logo {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .focus-header {
    flex-direction: column;
    text-align: center;
  }

  .focus-header i {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .location-feature {
    flex-direction: column;
    text-align: center;
  }

  .location-feature i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .map-container {
    height: 300px;
  }

  .event-card {
    flex-direction: column;
    gap: 1rem;
  }

  .event-date {
    align-self: flex-start;
  }

  .story-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .story-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .alert-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .alert-actions {
    flex-direction: column;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .share-story-card {
    padding: 2rem;
  }
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number,
.impact-number {
  animation: countUp 1s ease-out;
}

/* Loading states */
.loading-skeleton {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 25%, rgba(0, 212, 255, 0.2) 50%, rgba(0, 212, 255, 0.1) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Print styles */
@media print {
  .accessibility-toolbar,
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }

  .story-card,
  .testimonial-card,
  .news-card {
    break-inside: avoid;
    margin-bottom: 1rem;
  }
}
