body {
    margin: 0;
    padding: 0;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    top:-90px;
    position: relative;
    width: 80vw; /* Yüzdeyle genişlik */
    height: 80vw; /* Yükseklik de yüzdeyle */
    max-width: 600px; /* Maksimum genişlik */
    max-height: 600px; /* Maksimum yükseklik */
    min-width: 300px; /* Minimum genişlik */
    min-height: 300px; /* Minimum yükseklik */
}

.wheel {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/cark.png') no-repeat center center;
    background-size: contain;
    transform-origin: center;
}

.frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/frame.png') no-repeat center center;
    background-size: contain;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15vw;
    max-width: 100px; /* Maksimum logo genişliği */
}

.arrow {
    position: absolute;
    top: -7vw; /* Esnek ok işareti genişliği */
    left: 50%;
    transform: translateX(-50%);
    width: min(10vw, 80px); /* Ok işareti boyutunu min() ile daha dinamik yapıyoruz */
    height: auto;
}

.button {
    position: absolute;
    bottom: -20vw;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    width: 30vw;
    max-width: 200px;
    min-width: 150px;
    height: auto;
    text-align: center;
    line-height: 60px;
    font-size: min(5vw, 20px);
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.9;
}

.button:active {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.8;
}

.result {
    position: absolute;
    bottom: -35vw;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    font-size: min(4vw, 20px);
    color: white;
    font-weight: bold;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: visible;
    max-height: 50vh;
}