@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

*{
    box-sizing: border-box;
    margin: 0px;
    border: 0px;
}
body{
    font-family: 'Rubik' ,sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:2rem;
}
.container{
     background: rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 2rem;
     backdrop-filter: blur(10px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
     width:90%;
     max-width: 700px;
     animation : slide_up 1s ease-in-out;
}
@keyframes slide_up {
    from{
        opacity: 0;
        transform: translateY(50px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
h1{
    font-family: 'Orbitron' , sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #0fffc1, #7e0fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.description{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.7;
    padding:0 1rem;
    color:#ccc;
}
.highlight{
    color: #0fffc1;
    font-weight: bold;
}
.buttons{
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap:1.5rem;
    margin-bottom: 2rem;
}
.buttons button{
    background-color: #1c1c2b;
    padding:0.8rem 1.8rem ;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transition: all 0.3px;
}
.buttons button:hover{
    background-color:  #2d2d44;
    transform:translateY(-2px);
}
.input-section{
    margin-bottom:2rem ;
    text-align: center;
}
.input-section label{
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.input-section input{
    padding:0.8rem ;
    width:80%;
    max-width: 300px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    text-align: center;
    color: white;
    outline: none;
}
.predict{
    margin-top:1rem;
    padding:0.8rem 1.8rem ;
    font-size: 1rem;
    border-radius: 10px;
    background-color:#7e0fff;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}
.predict:hover{
    background-color: #a141ff;
    transform: translateY(-2px);
}
.result{
    margin-top:2rem;
    text-align: center;
    font-size: 1.5rem;
    animation: slide_up 1s ease;
    border: none;
}
.tier{
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: bold;
}