@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
    --bg-color: #0b0c10;
    --neon-color: #39ff14;
}

body {
    background-color: var(--bg-color);
    color: var(--neon-color);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
    margin: 0;
    font-family: 'Roboto', 'Consolas', monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 1rem;
}

header .logo {
    text-decoration: none;
    font-size: 1.5rem;
    text-shadow: 0 0 5px var(--neon-color), 0 0 10px var(--neon-color);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#lottieContainer {
    width: 300px;
    height: 300px;
    margin-bottom: 2rem;
    position: relative;
    cursor: pointer;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.neon-btn {
    color: var(--neon-color);
    border: 2px solid var(--neon-color);
    background: transparent;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
    transition: box-shadow 0.3s, text-shadow 0.3s;
}

.neon-btn:hover {
    box-shadow: 0 0 5px var(--neon-color), 0 0 20px var(--neon-color);
    text-shadow: 0 0 10px var(--neon-color);
}

.dimmed {
    opacity: 0.5;
}

.highlight {
    transform: scale(1.1);
    transition: transform 0.3s;
    z-index: 1;
}
