body {
    margin: 0;
    padding: 40px 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    color: #fff;
    display: flex;
    justify-content: center;
}

.container {
    background: rgba(230, 208, 255, 0.3);
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    max-width: 700px;
    width: 90%;

    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0,0,0,0) 0%,
        rgba(104,0,160,1) 35%,
        rgba(144,0,0,1) 65%,
        rgba(135,0,0,0) 100%
    );
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: linear-gradient(
        to right,
        rgba(0,0,0,0) 0%,
        rgba(104,0,160,1) 35%,
        rgba(144,0,0,1) 65%,
        rgba(135,0,0,0) 100%
    );
    mask-repeat: no-repeat;
    mask-size: cover;
    z-index: 999;
}

.results-page {
    display: flex;
    justify-content: center; 
    align-items: center;    
    flex: 1;                
    width: 100%;
    z-index: 999;
}

.results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    z-index: 999;
}

.result-block {
    text-align: center;
    width: 100%;
    max-width: 400px;
    z-index: 999;
}

.result-img {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.stars {
    font-size: 36px;
    color: #ffdc52;
    margin-top: 5px;
    white-space: nowrap;
    z-index: 999;
}

.total-text {
    color: #fff;
    margin-bottom: 60px;
    font-size: 18px;
    z-index: 999;
}

.rating-text {
    color: #fff;
    margin-top: 2px;
    font-size: 18px;
}
