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

:root {
    --bg-primary: #0A0A0F;
    --bg-secondary: #121218;
    --accent-primary: #00CAFF; /* Neon Blue */
    --accent-secondary: #BD00FF; /* Electric Purple */
    --text-primary: #F1F1F1;
    --text-secondary: #a0a0a0; /* Lighter gray for less emphasis */
    --warning-red: #FF3A5A;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto Mono', monospace;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.logo {
    width: 150px;
    margin-bottom: 5px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--accent-primary);
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px var(--accent-primary);
}

h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.social-links a {
    margin: 0 15px;
    display: inline-block;
    transition: transform 0.3s;
}

.social-links img {
    width: 40px;
    height: 40px;
}

.social-links a:hover {
    transform: scale(1.1);
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
}

.btn:hover {
    background-color: var(--accent-secondary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(189, 0, 255, 0.4); /* Neon glow effect */
    text-decoration: none;
}

.media-container {
    position: relative;
    margin-bottom: 20px;
    border: 2px solid var(--accent-primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px var(--accent-primary);
}

#content-video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.unmute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.unmute-btn:hover {
    background-color: var(--accent-secondary);
}

.unmute-btn img {
    width: 24px;
    height: 24px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 5px var(--accent-primary), 0 0 10px var(--accent-primary);
    }
    50% {
        text-shadow: 0 0 20px var(--accent-primary), 0 0 30px var(--accent-primary);
    }
    100% {
        text-shadow: 0 0 5px var(--accent-primary), 0 0 10px var(--accent-primary);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

    .logo {
        width: 100px;
    }
}