* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.logo {
    max-width: 450px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.animated-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #00ffff;
    }
    100% {
        text-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    }
}

.code-box {
    width: 85%;
    max-width: 700px;
    background-color: #2d2d2d;
    border: 2px solid #1e1e1e;
    color: #ffffff;
    font-family: monospace;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px #00ffff;
}

.code-box:focus {
    outline: none;
    box-shadow: 0 0 15px #00ffff;
}

.dropdown {
    margin-bottom: 20px;
}

.dropdown select {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #00ffff;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.action-button {
    background-color: #00ffff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    color: #121212;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    position: relative;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.action-button.glow {
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

.action-button.glow-red {
    background-color: #ff4c4c;
    animation: buttonGlowRed 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    }
    100% {
        box-shadow: 0 0 15px #00ffff, 0 0 20px #00ffff;
    }
}

@keyframes buttonGlowRed {
    0% {
        box-shadow: 0 0 5px #ff4c4c, 0 0 10px #ff4c4c;
    }
    100% {
        box-shadow: 0 0 15px #ff4c4c, 0 0 20px #ff4c4c;
    }
}

footer {
    margin-top: 40px;
}

footer a {
    color: #00ffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
