@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', monospace;
}

body {
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.03em;
    position: relative;
    overflow: hidden;
}

#grid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

h3 {
    font-size: 1.2rem;
    background: linear-gradient(
        90deg,
        rgb(255, 45, 85) 0%,
        rgb(255, 99, 128) 50%,
        rgb(255, 45, 85) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 45, 85, 0.5);
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 5px 15px;
    border: 1px solid #fff;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 3px 3px 0px #fff;
}

p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 120%;
    border-top-style: ridge;
}

a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.seperator {
    opacity: 0.3;
}

.video-container {
    width: 80%;
    max-width: 1280px;
    margin: 2rem auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ffffff1a;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 45, 85, 0.2);
    border: 2px solid rgba(255, 45, 85, 0.5);
    color: white;
    padding: 20px 25px;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.play-button:hover {
    background: rgba(255, 45, 85, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button.hidden {
    display: none;
}