* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

body {
    background-color: #cbe3f7; /* الأزرق الفاتح المطلوب */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.title {
    color: #c59b27; /* ذهبي */
    font-size: 26px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.wheel-box {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid #d4af37; /* ذهبي */
    z-index: 10;
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.3));
}

#wheelCanvas {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.center-circle {
    position: absolute;
    width: 65px;
    height: 65px;
    background: radial-gradient(circle, #ffe885 0%, #b8860b 100%);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: #4a3401;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    z-index: 5;
}

.spins-card {
    background: linear-gradient(135deg, #e0e0e0, #ffffff, #b0b0b0);
    border: 2px solid #a1a1a1;
    padding: 8px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.spin-button {
    width: 80%;
    padding: 14px 0;
    background: linear-gradient(180deg, #f3d068 0%, #c59b27 100%);
    border: 2px solid #997513;
    border-radius: 12px;
    color: #2b1f00;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.1s, opacity 0.2s;
}

.spin-button:active {
    transform: scale(0.96);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

