.lucky-pick-wrapper {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: #0d1117;  /* dark theme */
    padding: 20px;
    border-radius: 12px;
}

.lucky-title {
    font-size: 28px;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 5px;
}

.lucky-subtitle {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 20px;
}

.lucky-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #1f2937;
    color: #fff;
    font-size: 16px;
    appearance: none;
}

.lucky-btn {
    width: 100%;
    padding: 12px;
    background: #facc15;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lucky-btn:hover {
    background: #eab308;
}

.lucky-results {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.lucky-combo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
    gap: 10px;
}

.combo-label {
    font-weight: bold;
    color: #facc15;
    min-width: 40px;
    text-align: right;
}

.combo-numbers {
    display: flex;
    gap: 8px;
}

.pcso-ball {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fbbf24;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}