body {
    margin:0;
    font-family: 'Poppins', sans-serif;
    background:#0e0e0e;
    color:#fff;
    overflow-x:hidden;
}

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

.container {
    position:relative;
    max-width:400px;
    margin:100px auto;
    background:rgba(0,0,0,0.7);
    padding:30px;
    border-radius:15px;
    box-shadow:0 0 30px rgba(0,255,255,0.4);
}

h1 {
    text-align:center;
    margin-bottom:20px;
    color:#0ff;
    text-shadow:0 0 10px #0ff;
}

.domain-form input, .domain-form button {
    width:100%;
    padding:15px;
    margin:10px 0;
    border:none;
    border-radius:10px;
    font-size:16px;
}

.domain-form input {
    background:rgba(255,255,255,0.1);
    color:#fff;
}

.domain-form input::placeholder {
    color:rgba(255,255,255,0.6);
}

.domain-form button {
    background:#0ff;
    color:#000;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.domain-form button:hover {
    background:#00caca;
}

.result {
    margin-top:20px;
    background:rgba(0,0,0,0.5);
    padding:15px;
    border-radius:10px;
    text-align:center;
}
