/* CYBERPUNK DARKNET NEWS - MAIN STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00ffff;
    --neon-pink: #ff0080;
    --neon-purple: #8000ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --grid-color: rgba(0, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-accent: #00ffff;
}

/* Simple Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--neon-cyan);
    z-index: 9999;
    padding: 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-decoration: none;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.logo span {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    display: block;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    border-radius: 5px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 20px;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}



.neon-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.data-streams {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* NAVIGATION */
.cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--neon-cyan);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.logo-accent {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 255, 255, 0.1);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 100px 0 50px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.title-line {
    display: block;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.title-accent {
    display: block;
    color: var(--neon-cyan);
    text-shadow: 0 0 40px var(--neon-cyan);
    animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    from { text-shadow: 0 0 40px var(--neon-cyan); }
    to { text-shadow: 0 0 60px var(--neon-cyan), 0 0 80px var(--neon-cyan); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px var(--neon-pink);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.cyber-btn {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cyber-btn:hover::before {
    left: 100%;
}

.cyber-btn:hover {
    color: var(--text-primary);
    box-shadow: 
        0 0 20px var(--neon-cyan),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cyber-btn.primary {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

.cyber-btn.secondary {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.cyber-btn.secondary:hover {
    box-shadow: 
        0 0 20px var(--neon-pink),
        inset 0 0 20px rgba(255, 0, 128, 0.2);
}

.cyber-btn.outline {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

/* HERO STATS */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--neon-cyan);
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: stat-scan 3s ease-in-out infinite;
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NEWS TICKER */
.news-ticker {
    background: var(--darker-bg);
    border-top: 2px solid var(--neon-pink);
    border-bottom: 2px solid var(--neon-pink);
    padding: 15px 0;
    position: relative;
    z-index: 20;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--neon-pink);
    color: var(--dark-bg);
    padding: 8px 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 20px;
    animation: ticker-pulse 2s infinite;
}

@keyframes ticker-pulse {
    0%, 100% { box-shadow: 0 0 10px var(--neon-pink); }
    50% { box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink); }
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
    white-space: nowrap;
}

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

.ticker-item {
    margin-right: 100px;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MARKETS SECTION */
.markets-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.02) 30%, rgba(0, 255, 255, 0.02) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 128, 0.02) 30%, rgba(255, 0, 128, 0.02) 70%, transparent 70%);
    background-size: 100px 100px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--neon-cyan);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 1200px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .markets-grid {
        grid-template-columns: 1fr;
    }
}

.market-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--grid-color);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.market-card:hover::before {
    left: 100%;
}

.market-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.market-card.featured {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 128, 0.05);
}

.market-card.featured:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.market-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 15px;
    animation: status-blink 2s infinite;
}

.market-status.online {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

@keyframes status-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.market-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--neon-cyan);
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.market-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 40px 0 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.market-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.market-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature {
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    padding: 4px 12px;
    font-size: 11px;
    border: 1px solid var(--neon-cyan);
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--grid-color);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.stat-name {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.cyber-footer {
    background: rgba(0,0,0,0.95);
    border-top: 2px solid var(--neon-cyan);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.footer-heading {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(0,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.copyright, .seo-keywords {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Market Status Dashboard */
.market-status-bar {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,20,40,0.95) 100%);
    border-bottom: 2px solid var(--neon-cyan);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.market-status-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,255,0.1), transparent);
    animation: scanline 3s infinite;
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 100%; }
}

.status-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.status-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.status-badge {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    animation: blink 1.5s infinite;
}

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

.status-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .status-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .status-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-item {
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--grid-color);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.status-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.3s;
}

.status-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,255,255,0.2);
}

.status-item:hover::before {
    opacity: 1;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.status-item.online .status-indicator {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse-green 2s infinite;
}

.status-item.offline .status-indicator {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.status-item.warning .status-indicator {
    background: #ffc107;
    box-shadow: 0 0 10px #ffc107;
    animation: pulse-yellow 1.5s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-yellow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.market-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    flex: 1;
}

.status-label {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
}

.status-item.online .status-label {
    color: #00ff00;
    background: rgba(0,255,0,0.1);
}

.status-item.offline .status-label {
    color: #ff0000;
    background: rgba(255,0,0,0.1);
}

.status-item.warning .status-label {
    color: #ffc107;
    background: rgba(255,193,7,0.1);
}

.status-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,255,255,0.2);
}

.update-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Share Tech Mono', monospace;
}

.status-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}

.status-link:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .status-item {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .market-name {
        font-size: 0.85rem;
    }
    
    .status-label {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .status-header {
        flex-wrap: wrap;
    }
    
    .status-title {
        font-size: 1rem;
    }
    
    .status-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .status-container {
        padding: 0 20px;
    }
    
    .market-status-bar {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .status-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .status-item {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .status-header {
        gap: 10px;
    }
    
    .status-icon {
        font-size: 1.2rem;
    }
    
    .status-title {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .status-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

/* SEO Content Section */
.seo-content {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.seo-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.seo-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.seo-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.seo-text strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-content {
        padding: 40px 0;
    }
    
    .seo-container {
        padding: 0 20px;
    }
    
    .seo-title {
        font-size: 1.5rem;
    }
    
    .seo-text {
        font-size: 0.9rem;
    }
}

/* Security Reviews Section */
.security-reviews-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-top: 2px solid #00ffff;
    border-bottom: 2px solid #ff00ff;
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.security-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: securityPulse 4s ease-in-out infinite alternate;
}

@keyframes securityPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.security-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 18px;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    letter-spacing: 1px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.security-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.security-card:hover::before {
    opacity: 0.1;
}

.security-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 
        0 20px 40px rgba(0, 255, 255, 0.3),
        0 0 20px rgba(255, 0, 255, 0.2);
}

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

.card-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px #00ffff);
}

.card-category {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #ff00ff;
    background: rgba(255, 0, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
    letter-spacing: 1px;
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-title a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.card-title a:hover {
    color: #ffffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff;
}

.card-description {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #888888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.meta-date {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.meta-reading {
    color: #ff00ff;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .security-card {
        padding: 25px;
    }
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border-top: 2px solid #00ffff;
    border-bottom: 2px solid #ff00ff;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.news-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(255, 0, 255, 0.1) 50%, 
        rgba(0, 255, 255, 0.1) 100%);
    animation: tickerGlow 3s ease-in-out infinite alternate;
}

@keyframes tickerGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.ticker-label {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 18px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    display: inline-block;
    margin-right: 20px;
    padding: 0 15px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    border-radius: 5px;
    animation: breakingPulse 1s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes breakingPulse {
    0% { 
        text-shadow: 0 0 10px #ff0000;
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    100% { 
        text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: tickerScroll 60s linear infinite;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

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

.ticker-item {
    margin-right: 100px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.ticker-item:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

@media (max-width: 768px) {
    .ticker-label {
        font-size: 14px;
        margin-right: 15px;
        padding: 0 10px;
    }
    
    .ticker-content {
        font-size: 14px;
    }
    
    .ticker-item {
        margin-right: 50px;
    }
}
