body {
    margin: 0;
    overflow: hidden;
    background: black;
    font-family: Arial, sans-serif;
}

/* MATRIX BG */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

/* TOP TITLE */
.title {
    position: fixed;
    top: 20px;
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
    z-index: 3;
    font-weight: bold;
}

/* Cyber attack logo container */
.logo {
    position: fixed;
    left: 40px;
    top: 160px;
    width: 160px;
    height: 200px;
    z-index: 4;
}

/* Shield */
.shield {
    width: 160px;
    height: 200px;
    background: transparent;
    border: 4px solid #00ff00;
    border-radius: 40% 40% 50% 50%;
    box-shadow: 0 0 20px #00ff00;
    position: absolute;
}

/* Lightning bolt */
.bolt {
    position: absolute;
    left: 55px;
    top: 40px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 50px solid #00ff00;
    filter: drop-shadow(0 0 10px #00ff00);
    transform: rotate(20deg);
}

.bolt::after {
    content: "";
    position: absolute;
    top: 35px;
    left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 50px solid #00ff00;
}

/* CENTER MAP */
.video-container {
    position: fixed;
    top: 55%;
    left: 56%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

iframe {
    width: 900px;
    height: 500px;
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 25px #00ff00;
}
