*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#050509;

    color:white;

    font-family:Arial,Helvetica,sans-serif;

    overflow-x:hidden;

}

.background{

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top,#8b5cf620 0%,transparent 45%),
    radial-gradient(circle at bottom,#5b21b620 0%,transparent 45%);

    z-index:-2;

}

.container{

    width:min(900px,90%);

    margin:auto;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:20px;

    text-align:center;

}

.logo{

    position:relative;

    width:170px;

    height:170px;

}

.ring{

    position:absolute;

    inset:0;

    border-radius:50%;

    border:4px solid #9b5cff;

    box-shadow:

    0 0 20px #8b5cf6,

    0 0 60px #7c3aed;

}

.beam{

    position:absolute;

    width:220px;

    height:4px;

    background:linear-gradient(90deg,#ffffff,#a855f7,#ffffff);

    top:50%;

    left:-25px;

    transform:rotate(-30deg);

    box-shadow:0 0 20px #c084fc;

}

.center{

    position:absolute;

    width:22px;

    height:22px;

    border-radius:50%;

    background:white;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    box-shadow:

    0 0 30px white,

    0 0 60px #c084fc;

}

h1{

    font-size:4rem;

    letter-spacing:6px;

}

h2{

    color:#b388ff;

    letter-spacing:8px;

    font-weight:300;

}

.subtitle{

    color:#cfcfcf;

    max-width:600px;

}

button{

    margin-top:15px;

    background:#8b5cf6;

    border:none;

    color:white;

    padding:18px 36px;

    border-radius:40px;

    cursor:pointer;

    font-size:1rem;

    transition:.3s;

}

button:hover{

    transform:translateY(-3px);

    box-shadow:

    0 0 20px #8b5cf6,

    0 0 40px #8b5cf6;

}

.status{

    margin-top:10px;

    color:#999;

}

#sampleList{

    width:100%;

    display:grid;

    gap:12px;

    margin-top:25px;

}

.sample{

    background:#111118;

    border:1px solid #262640;

    border-radius:15px;

    padding:15px;

}

footer{

    margin-top:50px;

    color:#777;

    font-size:.8rem;

}

