.wheel-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.wheel-popup-content {
    background: transparent;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop version */
@media (min-width: 768px) {
    .wheel-popup-content {
        width: 45vw;
        height: 45vw;
		max-width: 600px;  /* Added max-width */
        max-height: 600px; /* Added max-height */
    }
}

/* Mobile version */
@media (max-width: 767px) {
    .wheel-popup-content {
        width: 90vw;
        height: 90vw;
    }
}

.wheel-container {
    width: 100%;
    height: 100%;
    position: relative;
	overflow: visible;
}

.wheel-container canvas {
    width: 100% !important;
    height: 100% !important;
	background-color: transparent;
    display: block;
}

/* SVG Overlay */
.wheel-container::after {
    content: '';
    position: absolute;
    top: -5%;    /* Extend beyond container */
    left: -5%;   /* Extend beyond container */
    width: 110%; /* Larger than container */
    height: 110%; /* Larger than container */
    background-image: url('https://test.guncelbahisbeygiris.com/wp-content/uploads/2025/04/example-3-overlay.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100;
    pointer-events: none;
}

.result-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #FFD700 0%, #90EE90 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    text-align: center;
    min-width: 300px;
}

#win-text {
    color: #2C3E50;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}

.btn {
    background: #2C3E50;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #34495E;
    transform: translateY(-2px);
}