:root {
    --matrix-green: #00FF41;
    --matrix-dark-green: #003B00;
    --matrix-black: #0D0208;
    --red-pill: #e74c3c;
    --blue-pill: #3498db;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(0, 255, 65, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--matrix-black);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.choice-text {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px var(--matrix-green);
    animation: flicker 4s infinite;
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.6;
    }
}

.video-section {
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16 / 9;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.video-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 255, 65, 0) 0%,
            rgba(0, 255, 65, 0.1) 50%,
            rgba(0, 255, 65, 0) 100%);
    background-size: 100% 200%;
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% {
        background-position: 0 -100%;
    }

    100% {
        background-position: 0 100%;
    }
}

.video-section:hover {
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.4);
    border-color: var(--matrix-green);
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    text-align: center;
    color: var(--matrix-green);
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pills-container {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.pill {
    width: 180px;
    height: 70px;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pill::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pill:hover::before {
    opacity: 1;
}

.pill.red {
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.4);
}

.pill.blue {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
}

.pill:hover {
    transform: translateY(-10px) scale(1.1);
}

.pill.red:hover {
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.6);
}

.pill.blue:hover {
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.6);
}

footer {
    margin-top: auto;
    width: 100%;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--matrix-green);
}

.disclaimer {
    color: #555;
    font-size: 0.8rem;
    text-align: center;
    max-width: 800px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pills-container {
        flex-direction: column;
        gap: 2rem;
    }

    .pill {
        width: 250px;
    }

    .container {
        padding: 1rem;
    }
}