
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Poppins:wght@300;600&display=swap');

:root {
    --bg-dark: #050511;
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-dark);
  
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    color: white;
    padding: 20px;
}


body::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
    top: 10%;
    left: 20%;
    border-radius: 50%;
}

body::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--neon-pink);
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
    bottom: 10%;
    right: 20%;
    border-radius: 50%;
}

.card {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(15px); /* Glass Effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h2 {
    font-family: 'Orbitron', sans-serif; /* Robotic Font */
    font-size: 2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 10px var(--neon-cyan);
}

p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 0.9rem;
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    outline: none;
    text-align: center;
    transition: 0.3s;
}

input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}


button {
    margin-top: 10px;
    padding: 15px;
    background: linear-gradient(90deg, var(--neon-cyan), #0066ff);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transition: transform 0.2s;
}

button:active {
    transform: scale(0.98);
}

button:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.7);
}


.output {
    margin-top: 30px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}


.output::-webkit-scrollbar { width: 5px; }
.output::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }


.glass-row {
    background: var(--glass);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 2px solid var(--neon-pink); /* Pink Accent */
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.3s ease-out forwards;
    transition: 0.3s;
}

.glass-row:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left: 2px solid var(--neon-cyan);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
    .card { padding: 20px; }
    h2 { font-size: 1.5rem; }
}