/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-red: #dc2626;
    --warning-red: #dc2626;
    --danger-orange: #f59e0b;
    --text-primary: #ffffff;
    --taxt-dark: #1a1a1a;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --glitch-color: #00ff00;
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-danger: linear-gradient(135deg, #dc2626 0%, #ff6666 100%);
    --card-bg: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(40, 40, 40, 0.7));
    --accent-gradient: linear-gradient(135deg, #dc2626, #ff6666);
    --glow-effect: 0 0 20px rgba(220, 38, 38, 0.3);
    --hover-glow: 0 8px 25px rgba(220, 38, 38, 0.4);
    --card-hover-glow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--accent-red);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--glitch-color);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Header and Navigation */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: -1;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-left: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Modern AI Hero Content */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 120px 20px 0;
    z-index: 2;
}

/* AI Neural Network Background */
.ai-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: neural-pulse 2s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}

.neural-node:nth-child(odd) {
    animation-delay: 0.5s;
}

.neural-node:nth-child(3n) {
    animation-delay: 1s;
}

.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke: var(--accent-red);
    stroke-width: 0.5;
    opacity: 0.4;
    animation: data-flow 3s infinite linear;
}

@keyframes neural-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
    }
    50% { 
        transform: scale(1.5);
        box-shadow: 0 0 25px rgba(220, 38, 38, 1);
    }
}

@keyframes data-flow {
    0%, 100% { stroke-dasharray: 0, 10; }
    50% { stroke-dasharray: 5, 5; }
}

/* AI Status Bar */
.ai-status-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent-red);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

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

.status-value {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-value.critical {
    color: var(--accent-red);
    animation: critical-blink 1.5s infinite;
}

.status-value.countdown {
    color: var(--warning-red);
    font-family: 'Courier New', monospace;
}

@keyframes critical-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Modern Hero Title */
.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin: 40px 0;
    line-height: 1.1;
}

.glitch-text {
    display: block;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    animation: subtle-glitch 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-effect-1 2s infinite;
    color: #ff0040;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-effect-2 2s infinite;
    color: #00ff40;
    z-index: -2;
}

@keyframes subtle-glitch {
    0%, 98% { transform: translate(0); }
    99% { transform: translate(-2px, 1px); }
    100% { transform: translate(0); }
}

@keyframes glitch-effect-1 {
    0%, 98% { transform: translate(0); opacity: 0; }
    99% { transform: translate(2px, -1px); opacity: 0.8; }
    100% { transform: translate(0); opacity: 0; }
}

@keyframes glitch-effect-2 {
    0%, 98% { transform: translate(0); opacity: 0; }
    99% { transform: translate(-1px, 2px); opacity: 0.8; }
    100% { transform: translate(0); opacity: 0; }
}

.ai-predictions {
    display: block;
    position: relative;
    height: 1.4em;
    overflow: visible;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    min-width: 400px;
}

.prediction {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-red);
    opacity: 0;
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: 2px;
    overflow: hidden;
    border-right: 3px solid var(--accent-red);
    width: 0;
    max-width: none;
    text-align: center;
}

.prediction.active {
    opacity: 1;
    animation: typewriter-effect 1.5s steps(15, end) forwards, cursor-blink 1s infinite;
}

.prediction.fade-out {
    animation: fade-out-smooth 0.8s ease-out forwards;
    border-right: none;
}

.prediction.typing-complete {
    border-right: none;
}

@keyframes typewriter-effect {
    0% { 
        width: 0;
        border-right: 3px solid var(--accent-red);
    }
    85% { 
        width: 100%;
        border-right: 3px solid var(--accent-red);
    }
    100% { 
        width: 100%;
        border-right: 3px solid var(--accent-red);
    }
}

@keyframes cursor-blink {
    0%, 40% { border-right-color: var(--accent-red); }
    41%, 60% { border-right-color: transparent; }
    61%, 100% { border-right-color: var(--accent-red); }
}

@keyframes fade-out-smooth {
    0% { 
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: blur(0px);
    }
    100% { 
        opacity: 0;
        transform: translateX(-50%) scale(0.95);
        filter: blur(2px);
    }
}

/* AI Impact Grid */
.ai-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.impact-card {
    background: var(--card-bg);
    border: 2px solid #333333;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 0;
    width: 100%;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: var(--card-hover-glow);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 15px;
    animation: icon-float 3s infinite ease-in-out;
}

.impact-icon:nth-child(2n) {
    animation-delay: 1s;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.impact-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.impact-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.warning-pulse {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--warning-red);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: urgent-pulse 1.5s infinite;
}

.warning-pulse i {
    font-size: 1.3rem;
    animation: shake 0.5s infinite;
}

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

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.hero-cta {
    background: var(--accent-gradient);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--hover-glow);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-hover-glow);
    background: linear-gradient(135deg, #ff6666, var(--accent-red));
}

.hero-cta i {
    animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .ai-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .ai-status-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .ai-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .neural-node {
        width: 6px;
        height: 6px;
    }
    
    .impact-card {
        padding: 20px;
    }
    
    .impact-icon {
        font-size: 2rem;
    }
    
    .impact-content h3 {
        font-size: 1.1rem;
    }
    
    .impact-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ai-impact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0px 35px;
    }
    
    .impact-card {
        padding: 18px;
    }
}

/* Featured Video Section */
.featured-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 3px solid var(--accent-red);
    border-bottom: 1px solid #333;
    position: relative;
}

.featured-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-header .section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff0000, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.video-wrapper {
    background: var(--secondary-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 480px;
    background: #000;
}

.video-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    z-index: 10;
}

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

.video-selector label {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 10px;
}

.video-dropdown {
    background: var(--secondary-bg);
    border: 2px solid #333;
    border-radius: 8px;
    color: var(--text-primary);
    padding: 10px 15px;
    font-size: 1rem;
    min-width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dropdown:hover {
    border-color: var(--accent-red);
}

.video-dropdown:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.update-video-btn {
    background: linear-gradient(135deg, var(--accent-red), #cc0000);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.video-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator.critical {
    background: rgba(220, 38, 38, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    animation: critical-pulse 2s infinite;
}

@keyframes critical-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.video-display {
    position: absolute;
    top: 80px;
    margin-bottom: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-video-content {
    text-align: center;
    padding: 40px;
}

.video-icon {
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.default-video-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.default-video-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.video-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.video-stats .stat-item {
    text-align: center;
}

.video-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.video-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-info {
    background: var(--secondary-bg);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #333;
    height: fit-content;
}

.video-metadata h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.video-metadata p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(220, 38, 38, 0.2);
    color: var(--accent-red);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--accent-red);
}

/* Content Modules */
.content-modules {
    margin-top: 60px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.content-module {
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 2px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-module:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-bottom: 1px solid #333;
}

.module-header h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-header i {
    color: var(--accent-red);
}

.module-toggle {
    background: none;
    border: 2px solid #333;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.module-toggle:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.module-content {
    padding: 25px;
    max-height: 300px;
    overflow-y: auto;
}

.content-module.hidden .module-content {
    display: none;
}

.content-module.hidden .module-toggle i::before {
    content: "\f070"; /* eye-slash icon */
}

/* News Items */
.news-item {
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.news-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.news-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Alert Items */
.alert-item {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid;
    position: relative;
}

.alert-item.critical {
    background: rgba(220, 38, 38, 0.1);
    border-left-color: var(--accent-red);
}

.alert-item.high {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: var(--danger-orange);
}

.alert-item.medium {
    background: rgba(156, 163, 175, 0.1);
    border-left-color: #9ca3af;
}

.alert-level {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.alert-item.critical .alert-level {
    color: var(--accent-red);
}

.alert-item.high .alert-level {
    color: var(--danger-orange);
}

.alert-item.medium .alert-level {
    color: #9ca3af;
}

.alert-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.alert-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.alert-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Metrics Grid */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid #333;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-trend.up {
    color: var(--accent-red);
}

.metric-trend.stable {
    color: var(--text-muted);
}

/* Responsive Design for Video Section */
@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .module-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .featured-video-section {
        padding: 60px 0;
    }
    
    .video-header .section-title {
        font-size: 2.5rem;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .control-panel {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .video-dropdown {
        min-width: auto;
        width: 100%;
    }
    
    .video-stats {
        gap: 20px;
    }
    
    .module-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .video-header .section-title {
        font-size: 2rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .module-header {
        padding: 15px 20px;
    }
    
    .module-content {
        padding: 20px;
    }
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    background: var(--secondary-bg);
    border-top: 2px solid var(--accent-red);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-red);
}

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

.stat-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: var(--card-hover-glow);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-red);
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* AI Dangers Section - Redesigned */
.dangers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #050505 50%, var(--primary-bg) 100%);
    border-top: 3px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.dangers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.apocalypse-counter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent-gradient);
    padding: 20px 40px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid var(--accent-red);
    animation: counter-pulse 3s infinite;
}

.counter-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.counter-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--taxt-dark);
    text-shadow: 0 0 20px rgb(23, 23, 23, 0.8);
    animation: number-glow 2s infinite alternate;
}

@keyframes counter-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
    }
}

@keyframes number-glow {
    0% { text-shadow: 0 0 20px rgba(255, 0, 0, 0.8); }
    100% { text-shadow: 0 0 40px rgba(255, 0, 0, 1), 0 0 60px rgba(255, 0, 0, 0.6); }
}

.threats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.threat-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.threat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.threat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: var(--card-hover-glow);
}

.threat-card:hover::before {
    transform: scaleX(1);
}

.threat-card.existential {
    border-color: #ff0000;
    background: linear-gradient(145deg, #1a0000 0%, #220000 100%);
}

.threat-card.existential:hover {
    box-shadow: 
        0 30px 60px rgba(255, 0, 0, 0.6),
        0 0 120px rgba(255, 0, 0, 0.4);
    animation: extinction-alert 1s infinite alternate;
}

@keyframes extinction-alert {
    0% { border-color: #ff0000; }
    100% { border-color: #ff4444; }
}

.threat-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    z-index: 3;
    border: 3px solid var(--accent-red);
    animation: number-rotate 4s linear infinite;
}

@keyframes number-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.threat-visual {
    height: 180px;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-bottom: 2px solid var(--border-color);
}

.threat-icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.threat-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.8));
    animation: icon-pulse 2s infinite;
}

@keyframes icon-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(220, 38, 38, 1));
    }
}

.danger-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.danger-pulse.critical {
    animation: pulse-ring-critical 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse-ring-critical {
    0% {
        transform: scale(1);
        opacity: 1;
        border-color: #ff0000;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
        border-color: #ff4444;
    }
}

.threat-graphic {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 200px;
    height: 120px;
    z-index: 2;
}

.threat-graphic svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

.threat-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.threat-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.threat-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.threat-status.critical {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    animation: status-pulse-critical 2s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.threat-status.high {
    background: linear-gradient(135deg, #ff4444, #dd2222);
    color: white;
    animation: status-pulse-high 2s infinite;
}

.threat-status.medium {
    background: linear-gradient(135deg, #ffaa00, #dd8800);
    color: white;
}

.threat-status.extinction {
    background: linear-gradient(135deg, #000000, #ff0000, #000000);
    color: white;
    animation: extinction-status 1s infinite;
    border: 2px solid #ff0000;
}

@keyframes status-pulse-critical {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
        transform: scale(1.05);
    }
}

@keyframes status-pulse-high {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
    }
    50% { 
        box-shadow: 0 0 25px rgba(255, 68, 68, 0.6);
    }
}

@keyframes extinction-status {
    0%, 100% { 
        background: linear-gradient(135deg, #000000, #ff0000, #000000);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
    }
    50% { 
        background: linear-gradient(135deg, #ff0000, #000000, #ff0000);
        box-shadow: 0 0 40px rgba(255, 0, 0, 1);
    }
}

.threat-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.threat-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.stat-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

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

/* Responsive Design for Threat Cards */
@media (max-width: 768px) {
    .threats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .threat-card {
        transform: none !important;
    }
    
    .threat-card:hover {
        transform: translateY(-10px) !important;
    }
    
    .threat-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .threat-visual {
        height: 150px;
    }
    
    .threat-icon {
        font-size: 2rem;
    }
    
    .threat-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .apocalypse-counter {
        padding: 15px 30px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
}

.threat-level.high {
    background: var(--danger-orange);
    color: var(--primary-bg);
}

.threat-level.medium {
    background: #fbbf24;
    color: var(--primary-bg);
}

@keyframes pulse-critical {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* News Loading and Display Styles */
.news-loader {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
}

.news-severity {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-severity.critical {
    background: var(--accent-red);
    color: white;
}

.news-severity.high {
    background: var(--danger-orange);
    color: white;
}

.news-severity.medium {
    background: #fbbf24;
    color: var(--primary-bg);
}

.news-severity.low {
    background: #10b981;
    color: white;
}

.news-source {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

.news-item.error {
    border-left: 4px solid var(--accent-red);
    background: rgba(255, 0, 0, 0.1);
}

.refresh-news-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.refresh-news-btn:hover {
    background: #059669;
}

.refresh-news-btn:disabled {
    background: #666;
    cursor: not-allowed;
}

.fetch-news-btn {
    background: var(--danger-orange);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 10px;
}

.fetch-news-btn:hover {
    background: #ea580c;
}

/* AI Expert Tweets Grid Section */
.experts-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #0f0f0f 50%, var(--secondary-bg) 100%);
    border-top: 3px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.experts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.experts-slider-container {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    margin-bottom: 0;
}

.experts-slider {
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 20px;
    width: max-content;
}

.expert-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    flex: 0 0 450px;
    min-width: 450px;
    width: 450px;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.expert-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: var(--card-hover-glow);
}

.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.expert-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.expert-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-red);
    position: relative;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    flex: 1;
}

.expert-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Orbitron', monospace;
}

.expert-handle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.expert-credentials {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.9;
    font-weight: 500;
}

.platform-logo {
    color: #ffffff;
    font-size: 1.8rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.platform-logo:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

.expert-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.expert-quote::before {
    content: '"';
    font-size: 3.5rem;
    color: var(--accent-red);
    position: absolute;
    top: -15px;
    left: -5px;
    opacity: 0.4;
    font-family: 'Orbitron', monospace;
}

.expert-quote::after {
    content: '"';
    font-size: 3.5rem;
    color: var(--accent-red);
    position: absolute;
    bottom: -25px;
    right: 5px;
    opacity: 0.4;
    font-family: 'Orbitron', monospace;
}

.expert-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.expert-warning.critical {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    animation: expert-pulse-critical 2s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.expert-warning.high {
    background: linear-gradient(135deg, #ff4444, #dd2222);
    color: white;
    animation: expert-pulse-high 2.5s infinite;
}

.expert-warning.medium {
    background: linear-gradient(135deg, #ffaa00, #dd8800);
    color: white;
}

@keyframes expert-pulse-critical {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
        transform: scale(1.02);
    }
}

@keyframes expert-pulse-high {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
    }
    50% { 
        box-shadow: 0 0 25px rgba(255, 68, 68, 0.5);
    }
}

/* Expert Slider Navigation */
.experts-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    z-index: 10;
    clear: both;
}

.expert-nav-btn {
    background: var(--accent-gradient);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hover-glow);
}

.expert-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--card-hover-glow);
}

.expert-nav-btn:active {
    transform: scale(0.95);
}

.expert-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    pointer-events: none;
}

.expert-dots {
    display: flex;
    gap: 12px;
}

.expert-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.expert-dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.expert-dot:hover {
    background: var(--warning-red);
    transform: scale(1.1);
}

/* Container Fluid for Experts Section */
.container-fluid {
    width: 100%;
    max-width: none;
    padding: 0 40px;
    margin: 0 auto;
}

.experts-section .container-fluid {
    width: 100%;
    max-width: none;
    padding: 0 40px;
}

/* Responsive Design for Expert Cards */
@media (max-width: 1400px) {
    .expert-card {
        flex: 0 0 400px;
        min-width: 400px;
        width: 400px;
    }
}

@media (max-width: 1200px) {
    .expert-card {
        flex: 0 0 380px;
        min-width: 380px;
        width: 380px;
    }
    
    .experts-slider {
        gap: 35px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .expert-card {
        flex: 0 0 320px;
        min-width: 320px;
        width: 320px;
        padding: 30px;
    }
    
    .experts-slider {
        gap: 25px;
        padding: 0 20px;
    }
    
    .experts-section .container-fluid {
        padding: 0 20px;
    }
    
    .expert-avatar {
        width: 50px;
        height: 50px;
    }
    
    .expert-name {
        font-size: 1.1rem;
    }
    
    .expert-quote {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .platform-logo {
        font-size: 1.5rem;
    }
    
    .experts-navigation {
        gap: 20px;
        margin-top: 40px;
    }
    
    .expert-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .expert-card {
        flex: 0 0 300px;
        min-width: 300px;
        width: 300px;
        padding: 25px;
    }
    
    .experts-slider {
        gap: 20px;
        padding: 0 15px;
    }
    
    .experts-section .container-fluid {
        padding: 0 15px;
    }
}
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-warning 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Removed old slider controls - now using static grid layout */

/* Enhanced Visual Effects */
.danger-image svg {
    transition: all 0.3s ease;
}

.danger-card:hover .danger-image svg {
    transform: scale(1.05);
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

/* Pulsing warning elements */
.warning-indicator,
.tweet-warning,
.expert-warning-level,
.warning-banner {
    position: relative;
    overflow: hidden;
}

.warning-indicator::before,
.tweet-warning::before,
.expert-warning-level::before,
.warning-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: warning-sweep 3s infinite;
}

@keyframes warning-sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* AI Development Countdown Section */
.countdown-section {
    padding: 100px 0;
    background: var(--primary-bg);
    border-top: 2px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.countdown-item {
    background: var(--secondary-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(220, 38, 38, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

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

.countdown-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-red);
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    animation: count-pulse 2s infinite;
}

@keyframes count-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.countdown-warning {
    background: var(--gradient-danger);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    z-index: 2;
    animation: pulse-critical 1.5s infinite;
}

.countdown-message {
    text-align: center;
    margin-top: 60px;
    padding: 30px 20px;
    background: var(--gradient-danger);
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    animation: urgent-message 3s infinite;
}

.countdown-message i {
    margin: 0 15px;
    font-size: 1.5rem;
    animation: rotate 3s linear infinite;
}

@keyframes urgent-message {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.8);
    }
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-bg);
    text-align: center;
    border-top: 2px solid var(--accent-red);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
    color: var(--accent-red);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.warning-banner {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-danger);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse-warning 2s infinite;
}

.warning-banner i {
    margin: 0 15px;
    font-size: 1.5rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    padding: 50px 0;
    border-top: 2px solid var(--accent-red);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-disclaimer {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.footer-warning {
    background: var(--gradient-danger);
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-warning i {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .logo {
        margin: 0 0 15px 0;
    }
    
    .nav-links {
        margin: 0;
    }
    
    .nav-links li {
        margin: 0 15px;
    }
    
    .hero-content {
        padding: 120px 20px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dangers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tweet-slider-container {
        max-width: 100%;
        margin: 40px auto 0;
    }
    
    .tweet-card {
        padding: 25px 20px;
    }
    
    .tweet-content {
        font-size: 1.1rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .countdown-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .countdown-item {
        padding: 30px 20px;
    }
    
    .countdown-number {
        font-size: 2.8rem;
    }
    
    .countdown-message {
        font-size: 1rem;
        padding: 20px 15px;
        letter-spacing: 1px;
    }
    
    .warning-banner {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .warning-banner i {
        margin: 0 10px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        margin: unset !important;
    }
    
    .danger-card {
        margin: 0 10px;
    }
    
    .danger-content {
        padding: 25px 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .warning-indicator {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-bg: #000000;
        --secondary-bg: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --border-color: #ffffff;
    }
}

/* Interactive Feedback Section */
.feedback-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
    border-top: 2px solid #dc2626;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.danger-rating,
.feedback-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #374151;
    position: relative;
    overflow: hidden;
}

.danger-rating::before,
.feedback-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #dc2626);
}

.danger-rating h3,
.feedback-form h3 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-selector label {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.slider-container {
    margin: 1.5rem 0;
}

.threat-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #dc2626 100%);
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    -webkit-appearance: none;
}

.threat-slider:hover {
    opacity: 1;
}

.threat-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.threat-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.slider-labels span:first-child,
.slider-labels span:last-child {
    color: #9ca3af;
}

#threat-value {
    color: #f59e0b;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
}

.submit-rating-btn,
.submit-concern-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-rating-btn:hover,
.submit-concern-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group select,
.form-group textarea,
.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #374151;
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group textarea:focus,
.form-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.live-stats {
    margin-top: 4rem;
    background: rgba(10, 10, 10, 0.9);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #dc2626;
}

.live-stats h3 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 6px;
    border: 1px solid #374151;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: #dc2626;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Additional responsive styles for feedback section */
@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .danger-rating,
    .feedback-form {
        padding: 1.5rem;
    }
    
    .stats-display {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
