/**
	hello!
*/
* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(rgba(0,0,0,0.95), rgba(0,0,0,0.95)), url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    background-color: #000;
    color: #ff0000;
    font-family: "Courier New", Courier, monospace;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 9999;
    pointer-events: none;
    background-size: 100% 2px, 3px 100%;
}

header {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.main-logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 12px #ff0000);
    animation: float 5s ease-in-out infinite, glitch-flicker 12s infinite;
}

nav {
    background: #0a0a0a;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    padding: 5px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.2s;
}

nav a:hover {
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(10, 0, 0, 0.9);
    border: 1px solid #222;
}

h2 {
    background: #ff0000;
    color: #000;
    padding: 10px 20px;
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    display: inline-block;
    margin-bottom: 25px;
}

.content {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #dddddd;
    word-wrap: break-word;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.video-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 5px solid #1a1a1a;
    transition: 0.3s;
}

.video-grid iframe:hover {
    border-color: #ff0000;
}

footer {
    text-align: center;
    padding: 100px 20px;
    color: #333;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@keyframes float {
  
}

@keyframes glitch-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; transform: scale(1); filter: contrast(100%); }
 
}
.sub-header-text {
    margin: 10px 0 0 0;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 4px;
    font-weight: bold;
    text-shadow: 2px 2px #ff0000;
   }


@media (max-width: 600px) {
    .sub-header-text {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}
@media (max-width: 768px) {
    header { padding: 15px 10px; }
    .logo-container { max-width: 95%; }
    nav a { padding: 10px 15px; font-size: 1rem; }
    .container { width: 95%; padding: 15px; }
}

@media (max-width: 480px) {
    .nav-wrapper { flex-direction: column; }
    nav a { width: 100%; text-align: center; border-bottom: 1px solid #111; }
}