.screen {
    border: 2px solid #ffc1db;
    border-radius: 10px;
    width: 100%;
    height: 83vh;
    align-items: center;
    padding:2rem;
    box-sizing: border-box;
}

main{
    margin-top:2.3rem;
}

.screenImg {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance {
    width: 15rem;
    align-self: flex-start;
}

.logoTg {
    width: 4rem;
    align-self: flex-end;
    margin-left: auto;
}

.pink {
    font-weight: bold;
    font-size: 1.2rem;
    color:#ff0080;
}

.typeS{
    font-size: 0.95rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 0.1rem;
}

.screenType{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1rem;
    margin-left: 0.7rem;
    margin-bottom: 1rem;
}

#question-container{
    font-weight: bold;
    color: #414141;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.hidden {
    display: none;
}

#user-info-container {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#user-info-container img{
    width: 13rem;
    margin-bottom: 2rem;
}

#user-info-container input {
    margin: 10px auto;
    padding: 10px;
    width: 80%;
    max-width: 300px;
    border-radius: 5px;
    border: 1px solid #ffccea;
}

#start-game-btn, #next-btn, #prev-btn {
    margin-top: 2rem;
    padding: 10px 20px;
    background: #ffb7d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#start-game-btn:hover, #next-btn:hover,#prev-btn:hover {
    background: #ff0080;
}

.choice-btn {
    padding: 10px 20px;
    background: #ffb7d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 1.1rem;
}

.choice-btn:hover {
    background: #ff0080;
}

.choice-btn.selected {
    background: #ff0080;
    color: #fff;
}

#next-btn {
    padding: 10px 20px;
    background: #ffb7d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px;
}

#result-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 10px;
}

#result-content p {
    margin: 5px 0;
}

.typeResult {
    margin-top: 20px;
}

.typeResult p {
    margin: 5px 0;
}

#quiz-container{
    text-align: center;
}

#result-title{
    font-size: 1rem;
}

#result-content{
    font-size: 0.9rem;
}

#result-analysis{
    font-size: 0.8rem;
}

#result-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hidden {
    display: none;
}
