/* Fonts and Base */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=JetBrains+Mono:wght@500;800&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #020617; /* slate-950 */
    color: #f8fafc;
    overflow-x: hidden;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Cyber Glow Effect */
.cyber-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cyber-card.active:hover {
    border-color: rgba(34, 211, 238, 0.8);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.15);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-4px);
}

/* Scanline Animation */
.scan-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.2), transparent);
    position: absolute;
    top: 0;
    left: 0;
    animation: scan 4s linear infinite;
    z-index: 5;
    pointer-events: none;
}
@keyframes scan {
    0% { top: -10%; }
    100% { top: 110%; }
}

.category-glow {
    position: relative;
}
.category-glow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #22d3ee;
    box-shadow: 0 0 10px #22d3ee;
}

.video-container {
    position: relative;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
    background: #000;
}
.video-container::before {
    content: 'OFFICIAL COMMUNIQUÉ';
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background: rgba(34, 211, 238, 0.9);
    color: #020617;
    padding: 0.25rem 0.75rem;
    font-size: 10px;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.coming-soon-overlay {
    background: repeating-linear-gradient(
        45deg,
        rgba(15, 23, 42, 0.8),
        rgba(15, 23, 42, 0.8) 10px,
        rgba(30, 41, 59, 0.8) 10px,
        rgba(30, 41, 59, 0.8) 20px
    );
}

/* Modals base */
.modal-base {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    overflow-y: auto;
}

/* Cyber map background mask */
.cyber-map-bg {
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}