/* 主容器 */
.lottery-container {
    position: relative;
    width: 1080px;
    height: 1920px;
    margin: 0 auto;
}

/* 背景图区域 */
.lottery-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* 抽奖区域 */
.wheel-area {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 525px;
    top: 683px;
    transform: translateX(-50%); /* 水平居中 */
    border-radius: 50%;
    overflow: hidden;
}

/* 号码球 */
.lottery-ball {
    position: absolute;
    width: 60px;  /* 原40px改为80px */
    height: 60px;  /* 原40px改为80px */
    background: linear-gradient(145deg, #2196F3, #1976D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px; /* 可选调整字号 */
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.3);
}




/* 控制区 */
.lottery-controls {
    position: absolute;
    bottom: 410px;
    left: 47%;
    transform: translateX(-50%);
    text-align: center;
}

/* 按钮单独定位 */
.start-lottery {
    margin-bottom: 103px; /* 按钮与结果框的间距 */
    padding: 15px 40px;
    font-size: 20px;
    background: linear-gradient(45deg, #FF5722, #FF9800);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.start-lottery:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}



.lottery-result {
    position: relative;
    left: 20px; /* 向右偏移 */
    transform: none; /* 取消居中 */
    margin-top: 20px;
    font-size: 28px;
    color: #FF4081;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}