* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONTS */
@font-face {
    font-family: "Baskerville";
    src: url(https://files.catbox.moe/4bjzjt.otf);
}

@font-face {
    font-family: "PC98"; 
    src: url(https://files.catbox.moe/i0ns2d.ttf) format('truetype');
}

.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.5) 25%, 
        rgba(0, 0, 0, 0) 25%
    );
    background-size: 100% 6px; 
    z-index: 999999; 
    pointer-events: none; 
    animation: tv-wave 4s ease-in-out infinite alternate, tv-flicker 0.15s infinite;
}

@keyframes tv-wave {
    0% {
        transform: translateX(-1px) scaleY(1);
        filter: hue-rotate(0deg);
    }
    50% {
        transform: translateX(1px) scaleY(1.01); 
    }
    100% {
        transform: translateX(-1px) scaleY(0.99);
        filter: hue-rotate(5deg);
    }
}

@keyframes tv-flicker {
    0% { opacity: 0.45; }
    20% { opacity: 0.55; }
    40% { opacity: 0.40; }
    60% { opacity: 0.50; }
    80% { opacity: 0.60; }
    100% { opacity: 0.48; }
}



body {
    background-color: #000000;
    font-family: Baskerville, serif;
    background-image: url('/pngs/borderleft.png'), url('/pngs/borderright.png');
    background-position: left bottom, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 900px auto, 900px auto;
    background-attachment: fixed; 
    color: white;
    height: 100vh;
    overflow: hidden; 
}

.h2 {
  color: #ff1200;
}

.page-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.left-section {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    margin-left: 5%;
}

.side-png {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.right-section {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;  
    padding: 20px;
    margin-left: -15%; 
    position: relative;
    z-index: 2;
}

.content-box {
    background-color: #000000;
    border: 3px solid #ff1200;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 100%; 
}

.content-box h2 {
    color: #ff1200;
    margin-bottom: 15px;
    text-align: center;
}

.content-box ul {
    margin: 15px 0;
    padding-left: 20px;
}


.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: Baskerville, serif;
    margin-top: 20px;
}

button {
    background-color: #000000;
    color: #ff1200;
    border: 1px solid #ff1200;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
}
