body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: 0;
}

.main {
    max-width: 400px;
}

.image {
    background-position: center;
    background-size: cover;
}

.back-btn {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    background-image: url(../../images/back.382b99b.webp);
    background-size: cover;
}

.header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin-bottom: 15px;
}

h1 {
   margin-left: 30px;
   font-size: 24px;
}


.main-container {
    color: white;
    width: 100%;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px auto;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #000;
    border: 4px solid #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #ff0000;
    z-index: 20;
}

.result-box {
    background: #fff;
    color: #000;
    padding: 18px 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    display: none;
    width: 90%;
    max-width: 280px;
}

.result-box.show {
    display: block;
    margin: auto;
}

.congrats {
    color: #1b9100;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.prize {
    color: #f38e00;
    font-size: 28px;
    font-weight: bold;
}
